diff --git a/src/application-insights/HISTORY.rst b/src/application-insights/HISTORY.rst
index a0324194b05..3e6925b9e1e 100644
--- a/src/application-insights/HISTORY.rst
+++ b/src/application-insights/HISTORY.rst
@@ -2,6 +2,9 @@
Release History
===============
+1.2.3
+++++++++++++++++++
+* `az monitor app-insights events/metrics/query`: Fix error: Profile.get_login_credentials() got an unexpected keyword argument 'resource'
1.2.2
++++++++++++++++++
diff --git a/src/application-insights/azext_applicationinsights/_client_factory.py b/src/application-insights/azext_applicationinsights/_client_factory.py
index 8ff5fec47fb..8ff92cd72df 100644
--- a/src/application-insights/azext_applicationinsights/_client_factory.py
+++ b/src/application-insights/azext_applicationinsights/_client_factory.py
@@ -3,18 +3,37 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+class _Track1Credential: # pylint: disable=too-few-public-methods
+
+ def __init__(self, credential, resource):
+ """Track 1 credential that can be fed into Track 1 SDK clients. Exposes signed_session protocol.
+ :param credential: Track 2 credential that exposes get_token protocol
+ :param resource: AAD resource
+ """
+ self._credential = credential
+ self._resource = resource
+
+ def signed_session(self, session=None):
+ import requests
+ from azure.cli.core.auth.util import resource_to_scopes
+ session = session or requests.Session()
+ token = self._credential.get_token(*resource_to_scopes(self._resource))
+ header = "{} {}".format('Bearer', token.token)
+ session.headers['Authorization'] = header
+ return session
+
def applicationinsights_data_plane_client(cli_ctx, _, subscription=None):
"""Initialize Log Analytics data client for use with CLI."""
from .vendored_sdks.applicationinsights import ApplicationInsightsDataClient
from azure.cli.core._profile import Profile
profile = Profile(cli_ctx=cli_ctx)
- cred, _, _ = profile.get_login_credentials(
- resource=cli_ctx.cloud.endpoints.app_insights_resource_id,
- subscription_id=subscription
- )
+ # Note: temporarily adapt track2 auth to track1 by the guidance:
+ # https://github.com/Azure/azure-cli/pull/29631#issuecomment-2716799520
+ # need to be removed after migrated by codegen
+ cred, _, _ = profile.get_login_credentials(subscription_id=subscription)
return ApplicationInsightsDataClient(
- cred,
+ _Track1Credential(cred, cli_ctx.cloud.endpoints.app_insights_resource_id),
base_url=f'{cli_ctx.cloud.endpoints.app_insights_resource_id}/v1'
)
diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function.yaml
index e53de2f1ec1..70887ff72b1 100644
--- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function.yaml
+++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function.yaml
@@ -19,36 +19,37 @@ interactions:
ParameterSetName:
- --app --location --kind -g --application-type
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501f574-0000-0200-0000-66cfdf0c0000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000003\"\
- ,\r\n \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"4c14a899-4f29-4bc6-a528-4c5b19f30ae5\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"2cb24b6c-7c30-48e4-8067-46f6a93b31b6\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=2cb24b6c-7c30-48e4-8067-46f6a93b31b6;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=4c14a899-4f29-4bc6-a528-4c5b19f30ae5\"\
- ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-08-29T02:38:03.9928502+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac000564-0000-0200-0000-67d14d5b0000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000003\",\r\n
+ \ \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"3ba1eec0-567b-4b50-a2f6-2e0d5bc62728\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"947ae263-994a-428a-8cb8-5a53b13f8584\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=947ae263-994a-428a-8cb8-5a53b13f8584;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=3ba1eec0-567b-4b50-a2f6-2e0d5bc62728\",\r\n
+ \ \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2025-03-12T09:01:00.6223978+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000003_3ba1eec0-567b-4b50-a2f6-2e0d5bc62728_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000003-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1297'
+ - '1530'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:04 GMT
+ - Wed, 12 Mar 2025 09:01:15 GMT
expires:
- '-1'
pragma:
@@ -62,11 +63,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: BC33533AAD2D40C2AE2CBFA2682CD8DE Ref B: MAA201060514035 Ref C: 2024-08-29T02:38:00Z'
+ - 'Ref A: A1812A309151424EA6E4901CAACC03C5 Ref B: MAA201060515031 Ref C: 2025-03-12T09:00:56Z'
x-powered-by:
- ASP.NET
status:
@@ -86,36 +87,37 @@ interactions:
ParameterSetName:
- -g --app
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2020-02-02-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501f574-0000-0200-0000-66cfdf0c0000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000003\"\
- ,\r\n \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"4c14a899-4f29-4bc6-a528-4c5b19f30ae5\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"2cb24b6c-7c30-48e4-8067-46f6a93b31b6\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=2cb24b6c-7c30-48e4-8067-46f6a93b31b6;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=4c14a899-4f29-4bc6-a528-4c5b19f30ae5\"\
- ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-08-29T02:38:03.9928502+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac000564-0000-0200-0000-67d14d5b0000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000003\",\r\n
+ \ \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"3ba1eec0-567b-4b50-a2f6-2e0d5bc62728\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"947ae263-994a-428a-8cb8-5a53b13f8584\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=947ae263-994a-428a-8cb8-5a53b13f8584;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=3ba1eec0-567b-4b50-a2f6-2e0d5bc62728\",\r\n
+ \ \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2025-03-12T09:01:00.6223978+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000003_3ba1eec0-567b-4b50-a2f6-2e0d5bc62728_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000003-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1297'
+ - '1530'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:07 GMT
+ - Wed, 12 Mar 2025 09:01:16 GMT
expires:
- '-1'
pragma:
@@ -129,9 +131,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 5BE6C4B8379042CAA13D8BAD091689FD Ref B: MAA201060516031 Ref C: 2024-08-29T02:38:06Z'
+ - 'Ref A: 0885CBF2DC3F4FF898C0DCE12F1B6C5F Ref B: MAA201060516025 Ref C: 2025-03-12T09:01:16Z'
x-powered-by:
- ASP.NET
status:
@@ -151,21 +153,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function","date":"2024-08-29T02:37:16Z","module":"application-insights","DateCreated":"2024-08-29T02:37:41Z","Creator":"v-ruih@microsoft.com"},"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","test":"test_connect_function","date":"2025-03-12T09:00:18Z","module":"application-insights","Creator":"liwang3@microsoft.com","DateCreated":"2025-03-12T09:00:25Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '443'
+ - '444'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:08 GMT
+ - Wed, 12 Mar 2025 09:01:18 GMT
expires:
- '-1'
pragma:
@@ -177,9 +179,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: F0646D8D57B6454C81E2E74C2051B2C3 Ref B: MAA201060513053 Ref C: 2024-08-29T02:38:09Z'
+ - 'Ref A: ADBD7093857448709FAE035964183C7E Ref B: MAA201060514049 Ref C: 2025-03-12T09:01:19Z'
status:
code: 200
message: OK
@@ -203,24 +205,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000005?api-version=2023-01-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000005","name":"clitestplan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":36536,"name":"clitestplan000005","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-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":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-bay-199_36536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-08-29T02:38:14.53"},"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/clitestplan000005","name":"clitestplan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":54367,"name":"clitestplan000005","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-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":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-bay-023_54367","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2025-03-12T09:01:24.863"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1591'
+ - '1592'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:17 GMT
+ - Wed, 12 Mar 2025 09:01:28 GMT
etag:
- - '"1DAF9BC7FA3E6AB"'
+ - '"1DB932D562AF9B0"'
expires:
- '-1'
pragma:
@@ -234,11 +236,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: F46629CA9F16453DB04FD119BCE70BCC Ref B: MAA201060513037 Ref C: 2024-08-29T02:38:09Z'
+ - 'Ref A: 4C62750377BE455EA8491BDDEB9746CD Ref B: MAA201060516053 Ref C: 2025-03-12T09:01:20Z'
x-powered-by:
- ASP.NET
status:
@@ -258,23 +260,23 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000005?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000005","name":"clitestplan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West
- US","properties":{"serverFarmId":36536,"name":"clitestplan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":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-bay-199_36536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-08-29T02:38:14.53"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ US","properties":{"serverFarmId":54367,"name":"clitestplan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":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-bay-023_54367","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2025-03-12T09:01:24.863"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1513'
+ - '1514'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:19 GMT
+ - Wed, 12 Mar 2025 09:01:31 GMT
expires:
- '-1'
pragma:
@@ -288,9 +290,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: DB896A001A8A4337822BEB7AC461BE1C Ref B: MAA201060516029 Ref C: 2024-08-29T02:38:19Z'
+ - 'Ref A: 46E7C8E36DCE48B3AB10926B1BDC70DF Ref B: MAA201060513023 Ref C: 2025-03-12T09:01:30Z'
x-powered-by:
- ASP.NET
status:
@@ -310,12 +312,14 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/providers/Microsoft.Web/functionAppStacks?api-version=2023-01-01
response:
body:
string: '{"value":[{"id":null,"name":"dotnet","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":".NET","value":"dotnet","preferredOs":"windows","majorVersions":[{"displayText":".NET
+ 9 Isolated","value":"dotnet9isolated","minorVersions":[{"displayText":".NET
+ 9 Isolated","value":"9 (STS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v9.0","isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v9.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":false}],"endOfLifeDate":"2026-05-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|9.0","isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|9.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":false}],"endOfLifeDate":"2026-05-12T00:00:00Z"}}}]},{"displayText":".NET
8 Isolated","value":"dotnet8isolated","minorVersions":[{"displayText":".NET
8 Isolated","value":"8 (LTS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","isHidden":false,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|8.0","isHidden":false,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"}}}]},{"displayText":".NET
7 Isolated","value":"dotnet7isolated","minorVersions":[{"displayText":".NET
@@ -334,8 +338,9 @@ interactions:
Core 2","value":"dotnetcore2","minorVersions":[{"displayText":".NET Core 2.2","value":"2.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"2.2","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.2.207"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true}]},"linuxRuntimeSettings":{"runtimeVersion":"dotnet|2.2","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.2.207"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"dotnet|2.2"},"supportedFunctionsExtensionVersions":["~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true}]}}}]},{"displayText":".NET
Framework 4","value":"dotnetframework4","minorVersions":[{"displayText":".NET
Framework 4.7","value":"4.7","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"4.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~1"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~1","isDeprecated":true,"isDefault":true}]}}}]}]}},{"id":null,"name":"node","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Node.js","value":"node","preferredOs":"windows","majorVersions":[{"displayText":"Node.js
+ 22","value":"22","minorVersions":[{"displayText":"Node.js 22","value":"22","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~22","isPreview":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"22.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|22","isPreview":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"22.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|22"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-04-30T00:00:00Z"}}}]},{"displayText":"Node.js
20","value":"20","minorVersions":[{"displayText":"Node.js 20 LTS","value":"20
- LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-05-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|20"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-05-30T00:00:00Z"}}}]},{"displayText":"Node.js
+ LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|20"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-04-30T00:00:00Z"}}}]},{"displayText":"Node.js
18","value":"18","minorVersions":[{"displayText":"Node.js 18 LTS","value":"18
LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~18"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2025-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|18"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2025-04-30T00:00:00Z"}}}]},{"displayText":"Node.js
16","value":"16","minorVersions":[{"displayText":"Node.js 16 LTS","value":"16
@@ -350,19 +355,20 @@ interactions:
LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~8"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2019-12-31T00:00:00Z"}}}]},{"displayText":"Node.js
6","value":"6","minorVersions":[{"displayText":"Node.js 6 LTS","value":"6
LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"WEBSITE_NODE_DEFAULT_VERSION":"~6"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~1"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~1","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2019-04-30T00:00:00Z"}}}]}]}},{"id":null,"name":"python","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Python","value":"python","preferredOs":"linux","majorVersions":[{"displayText":"Python
- 3","value":"3","minorVersions":[{"displayText":"Python 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.11","remoteDebuggingSupported":false,"isPreview":false,"isDefault":true,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.11"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3","value":"3","minorVersions":[{"displayText":"Python 3.12","value":"3.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.12","remoteDebuggingSupported":false,"isPreview":true,"isDefault":false,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.12"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.12"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2028-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.11","remoteDebuggingSupported":false,"isPreview":false,"isDefault":true,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.11"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-10-31T00:00:00Z"}}},{"displayText":"Python
3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.10","remoteDebuggingSupported":false,"isPreview":false,"isDefault":true,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.10"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-10-31T00:00:00Z"}}},{"displayText":"Python
3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.9","remoteDebuggingSupported":false,"isPreview":false,"isDefault":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.9"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2025-10-31T00:00:00Z"}}},{"displayText":"Python
- 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2024-10-31T00:00:00Z"}}},{"displayText":"Python
- 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.7"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-06-30T00:00:00Z"}}},{"displayText":"Python
- 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.6"},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2022-09-30T00:00:00Z"}}}]}]}},{"id":null,"name":"java","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Java","value":"java","preferredOs":"windows","majorVersions":[{"displayText":"Java
- 21","value":"21","minorVersions":[{"displayText":"Java 21","value":"21.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"21","isPreview":true,"isHidden":true,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"21","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|21","isPreview":true,"isHidden":false,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|21"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 17","value":"17","minorVersions":[{"displayText":"Java 17","value":"17.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"17","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|17"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 11","value":"11","minorVersions":[{"displayText":"Java 11","value":"11.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"11","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|11"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"1.8","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2025-03-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2025-03-01T00:00:00Z"}}}]}]}},{"id":null,"name":"powershell","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"PowerShell
+ 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2024-10-07T00:00:00Z"}}},{"displayText":"Python
+ 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.7"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-06-27T00:00:00Z"}}},{"displayText":"Python
+ 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.6"},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2021-12-23T00:00:00Z"}}}]}]}},{"id":null,"name":"java","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Java","value":"java","preferredOs":"windows","majorVersions":[{"displayText":"Java
+ 21","value":"21","minorVersions":[{"displayText":"Java 21","value":"21.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"21","isPreview":false,"isHidden":true,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"21","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2028-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|21","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|21"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2028-09-01T00:00:00Z"}}}]},{"displayText":"Java
+ 17","value":"17","minorVersions":[{"displayText":"Java 17","value":"17.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"17","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|17"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
+ 11","value":"11","minorVersions":[{"displayText":"Java 11","value":"11.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"11","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2027-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|11"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
+ 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"1.8","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-11-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-11-30T00:00:00Z"}}}]}]}},{"id":null,"name":"powershell","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"PowerShell
Core","value":"powershell","preferredOs":"windows","majorVersions":[{"displayText":"PowerShell
- 7","value":"7","minorVersions":[{"displayText":"PowerShell 7.4","value":"7.4","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.4","isDefault":false,"isPreview":true,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.4","netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":false,"isPreview":true,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.4"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"}}},{"displayText":"PowerShell
- 7.2","value":"7.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.2","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.2","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.2","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.2"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"}}},{"displayText":"PowerShell
+ 7","value":"7","minorVersions":[{"displayText":"PowerShell 7.4","value":"7.4","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.4","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.4","netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.4"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"}}},{"displayText":"PowerShell
+ 7.2","value":"7.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.2","isDefault":false,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.2","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.2","isDefault":false,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.2"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"}}},{"displayText":"PowerShell
7.0","value":"7.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~7","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"~7","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2022-12-03T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7","isAutoUpdate":true,"isPreview":false,"isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2022-12-03T00:00:00Z"}}}]},{"displayText":"PowerShell
Core 6","value":"6","minorVersions":[{"displayText":"PowerShell Core 6.2","value":"6.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~6","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"~6"},"isDeprecated":true,"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2022-09-30T00:00:00Z"}}}]}]}},{"id":null,"name":"custom","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Custom
Handler","value":"custom","preferredOs":"windows","majorVersions":[{"displayText":"Custom
@@ -371,11 +377,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '37321'
+ - '40653'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:20 GMT
+ - Wed, 12 Mar 2025 09:01:32 GMT
expires:
- '-1'
pragma:
@@ -389,7 +395,7 @@ interactions:
x-content-type-options:
- nosniff
x-msedge-ref:
- - 'Ref A: F11D5D16FF984174965F6BF6E3D2281B Ref B: MAA201060514033 Ref C: 2024-08-29T02:38:21Z'
+ - 'Ref A: 6AE405A538A54F9590A0A082D44EDB1B Ref B: MAA201060515039 Ref C: 2025-03-12T09:01:32Z'
x-powered-by:
- ASP.NET
status:
@@ -409,12 +415,12 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2023-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2024-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-08-29T02:37:32.1664929Z","key2":"2024-08-29T02:37:32.1664929Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-29T02:37:35.5728077Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-29T02:37:35.5728077Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-08-29T02:37:31.9789919Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-03-12T09:00:28.5115547Z","key2":"2025-03-12T09:00:28.5115547Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T09:00:28.5271781Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T09:00:28.5271781Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-03-12T09:00:28.3865558Z","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
@@ -423,7 +429,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:22 GMT
+ - Wed, 12 Mar 2025 09:01:33 GMT
expires:
- '-1'
pragma:
@@ -435,9 +441,55 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: BB9B081AE3B2430286D24DFF67611503 Ref B: MAA201060516021 Ref C: 2024-08-29T02:38:22Z'
+ - 'Ref A: 5CA80A984EFA474981FD0115DEB67617 Ref B: MAA201060514049 Ref C: 2025-03-12T09:01:33Z'
+ 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 --functions-version --runtime
+ User-Agent:
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2024-01-01
+ response:
+ body:
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-03-12T09:00:28.5115547Z","key2":"2025-03-12T09:00:28.5115547Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T09:00:28.5271781Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T09:00:28.5271781Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-03-12T09:00:28.3865558Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1321'
+ content-type:
+ - application/json
+ date:
+ - Wed, 12 Mar 2025 09:01:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 0E39C5744A224B6FA7C06F0978B5865B Ref B: MAA201060513009 Ref C: 2025-03-12T09:01:34Z'
status:
code: 200
message: OK
@@ -457,12 +509,12 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2023-05-01&$expand=kerb
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2024-01-01&$expand=kerb
response:
body:
- string: '{"keys":[{"creationTime":"2024-08-29T02:37:32.1664929Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-08-29T02:37:32.1664929Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ string: '{"keys":[{"creationTime":"2025-03-12T09:00:28.5115547Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-03-12T09:00:28.5115547Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
headers:
cache-control:
- no-cache
@@ -471,7 +523,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:23 GMT
+ - Wed, 12 Mar 2025 09:01:34 GMT
expires:
- '-1'
pragma:
@@ -483,9 +535,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-msedge-ref:
- - 'Ref A: B527065EDBA7437683AD9229D9E871BA Ref B: MAA201060516021 Ref C: 2024-08-29T02:38:23Z'
+ - 'Ref A: 5954A536A40D40DEA4A7DAAD69AB8376 Ref B: MAA201060513009 Ref C: 2025-03-12T09:01:35Z'
status:
code: 200
message: OK
@@ -493,7 +545,7 @@ interactions:
body: '{"kind": "functionapp", "location": "West US", "properties": {"serverFarmId":
"clitestplan000005", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig":
{"netFrameworkVersion": "v6.0", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME",
- "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~20"},
+ "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~22"},
{"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~4"}, {"name": "AzureWebJobsStorage",
"value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}],
"use32BitWorkerProcess": true, "alwaysOn": true, "localMySqlEnabled": false,
@@ -514,26 +566,26 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004","name":"clitestfunction000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-199.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:38:32.24","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
+ US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T09:01:39.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
all","description":"Allow all access"}],"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.94","possibleInboundIpAddresses":"40.112.243.94","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-199.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.112.243.94","possibleOutboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.118.240.156,40.118.247.245,168.62.220.91,40.118.242.244,40.118.243.209,138.91.77.15,137.135.0.255,40.118.246.112,40.118.246.249,104.40.32.182,137.135.11.148,137.135.14.172,104.40.38.109,40.112.212.230,40.78.96.41,168.62.197.248,104.42.96.127,40.78.96.194,40.118.163.161,40.118.244.117,104.40.32.64,168.62.223.24,104.40.39.217,138.91.79.109,40.112.243.94","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-199","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98,40.112.243.16","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,104.45.226.98","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,20.253.136.166,40.112.177.65,40.112.177.108,13.64.241.4,40.112.177.69,40.112.183.10,20.245.136.194,20.245.136.62,20.237.169.69,20.237.203.111,20.237.172.166,20.237.168.187,168.61.2.18,168.62.205.43,137.135.31.15,168.62.213.170,138.91.144.254,138.91.189.77,104.45.226.98","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7583'
+ - '7448'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:52 GMT
+ - Wed, 12 Mar 2025 09:02:00 GMT
etag:
- - '"1DAF9BC8A250220"'
+ - '"1DB932D5E4DCCD0"'
expires:
- '-1'
pragma:
@@ -549,7 +601,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '499'
x-msedge-ref:
- - 'Ref A: A322B0ADBA984E6D857FD0D911361890 Ref B: MAA201060516029 Ref C: 2024-08-29T02:38:23Z'
+ - 'Ref A: 4927496D48A9490380B25291F857F796 Ref B: MAA201060513023 Ref C: 2025-03-12T09:01:35Z'
x-powered-by:
- ASP.NET
status:
@@ -569,591 +621,143 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2022-12-01
response:
body:
- string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"\
- ,\"name\":\"eastus\",\"type\":\"Region\",\"displayName\":\"East US\",\"regionalDisplayName\"\
- :\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\"\
- :\"Recommended\",\"geography\":\"United States\",\"geographyGroup\":\"US\"\
- ,\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\"\
- :\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus-az1\"},{\"\
- logicalZone\":\"3\",\"physicalZone\":\"eastus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"\
- ,\"name\":\"southcentralus\",\"type\":\"Region\",\"displayName\":\"South Central\
- \ US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"United States\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\"\
- :\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"\
- northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"southcentralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southcentralus-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"southcentralus-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"\
- ,\"name\":\"westus2\",\"type\":\"Region\",\"displayName\":\"West US 2\",\"\
- regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\"\
- ,\"regionCategory\":\"Recommended\",\"geography\":\"United States\",\"geographyGroup\"\
- :\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\"\
- :\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"westus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus2-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"westus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\"\
- ,\"name\":\"westus3\",\"type\":\"Region\",\"displayName\":\"West US 3\",\"\
- regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\"\
- ,\"regionCategory\":\"Recommended\",\"geography\":\"United States\",\"geographyGroup\"\
- :\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\"\
- :\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"westus3-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus3-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"westus3-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"\
- ,\"name\":\"australiaeast\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Australia\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"151.2094\"\
- ,\"latitude\":\"-33.86\",\"physicalLocation\":\"New South Wales\",\"pairedRegion\"\
- :[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"australiaeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"australiaeast-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"australiaeast-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"\
- ,\"name\":\"southeastasia\",\"type\":\"Region\",\"displayName\":\"Southeast\
- \ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Asia Pacific\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"103.833\"\
- ,\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\"\
- :[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"southeastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southeastasia-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"southeastasia-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"\
- ,\"name\":\"northeurope\",\"type\":\"Region\",\"displayName\":\"North Europe\"\
- ,\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\"\
- ,\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"northeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"northeurope-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"northeurope-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\"\
- ,\"name\":\"swedencentral\",\"type\":\"Region\",\"displayName\":\"Sweden Central\"\
- ,\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Sweden\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"\
- 60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"\
- swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"swedencentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"swedencentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"swedencentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"\
- ,\"name\":\"uksouth\",\"type\":\"Region\",\"displayName\":\"UK South\",\"\
- regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"\
- Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United Kingdom\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\"\
- ,\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"uksouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uksouth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"uksouth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"\
- ,\"name\":\"westeurope\",\"type\":\"Region\",\"displayName\":\"West Europe\"\
- ,\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\"\
- ,\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"westeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westeurope-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"westeurope-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"\
- ,\"name\":\"centralus\",\"type\":\"Region\",\"displayName\":\"Central US\"\
- ,\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United States\"\
- ,\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\"\
- ,\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"centralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralus-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"centralus-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"\
- ,\"name\":\"southafricanorth\",\"type\":\"Region\",\"displayName\":\"South\
- \ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\"\
- ,\"geography\":\"South Africa\",\"geographyGroup\":\"Africa\",\"longitude\"\
- :\"28.21837\",\"latitude\":\"-25.73134\",\"physicalLocation\":\"Johannesburg\"\
- ,\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"southafricanorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southafricanorth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"southafricanorth-az2\"}]},{\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"\
- ,\"name\":\"centralindia\",\"type\":\"Region\",\"displayName\":\"Central India\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"India\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"73.9197\",\"\
- latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"\
- name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"centralindia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralindia-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"centralindia-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"\
- ,\"name\":\"eastasia\",\"type\":\"Region\",\"displayName\":\"East Asia\",\"\
- regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Asia Pacific\"\
- ,\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"114.188\",\"latitude\"\
- :\"22.267\",\"physicalLocation\":\"Hong Kong\",\"pairedRegion\":[{\"name\"\
- :\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastasia-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"eastasia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"\
- ,\"name\":\"japaneast\",\"type\":\"Region\",\"displayName\":\"Japan East\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Japan\",\"\
- geographyGroup\":\"Asia Pacific\",\"longitude\":\"139.77\",\"latitude\":\"\
- 35.68\",\"physicalLocation\":\"Tokyo, Saitama\",\"pairedRegion\":[{\"name\"\
- :\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"japaneast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"japaneast-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"japaneast-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"\
- ,\"name\":\"koreacentral\",\"type\":\"Region\",\"displayName\":\"Korea Central\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Korea\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"126.978\",\"\
- latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"\
- name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"koreacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"koreacentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"koreacentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"\
- ,\"name\":\"canadacentral\",\"type\":\"Region\",\"displayName\":\"Canada Central\"\
- ,\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Canada\"\
- ,\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\"\
- ,\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"canadacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"canadacentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"canadacentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"\
- ,\"name\":\"francecentral\",\"type\":\"Region\",\"displayName\":\"France Central\"\
- ,\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"France\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"2.373\",\"latitude\":\"46.3772\"\
- ,\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"francecentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"francecentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"francecentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"\
- ,\"name\":\"germanywestcentral\",\"type\":\"Region\",\"displayName\":\"Germany\
- \ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\"\
- ,\"geography\":\"Germany\",\"geographyGroup\":\"Europe\",\"longitude\":\"\
- 8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"\
- pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"germanywestcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"germanywestcentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"germanywestcentral-az2\"}]},{\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italynorth\"\
- ,\"name\":\"italynorth\",\"type\":\"Region\",\"displayName\":\"Italy North\"\
- ,\"regionalDisplayName\":\"(Europe) Italy North\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Italy\",\"\
- geographyGroup\":\"Europe\",\"longitude\":\"9.18109\",\"latitude\":\"45.46888\"\
- ,\"physicalLocation\":\"Milan\",\"pairedRegion\":[]},\"availabilityZoneMappings\"\
- :[{\"logicalZone\":\"1\",\"physicalZone\":\"italynorth-az3\"},{\"logicalZone\"\
- :\"2\",\"physicalZone\":\"italynorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\"\
- :\"italynorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"\
- ,\"name\":\"norwayeast\",\"type\":\"Region\",\"displayName\":\"Norway East\"\
- ,\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Norway\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"\
- 59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"\
- norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"norwayeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"norwayeast-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"norwayeast-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/polandcentral\"\
- ,\"name\":\"polandcentral\",\"type\":\"Region\",\"displayName\":\"Poland Central\"\
- ,\"regionalDisplayName\":\"(Europe) Poland Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Poland\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"21.01666\",\"latitude\":\"\
- 52.23334\",\"physicalLocation\":\"Warsaw\",\"pairedRegion\":[]},\"availabilityZoneMappings\"\
- :[{\"logicalZone\":\"1\",\"physicalZone\":\"polandcentral-az3\"},{\"logicalZone\"\
- :\"2\",\"physicalZone\":\"polandcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\"\
- :\"polandcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/spaincentral\"\
- ,\"name\":\"spaincentral\",\"type\":\"Region\",\"displayName\":\"Spain Central\"\
- ,\"regionalDisplayName\":\"(Europe) Spain Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Spain\",\"\
- geographyGroup\":\"Europe\",\"longitude\":\"3.4209\",\"latitude\":\"40.4259\"\
- ,\"physicalLocation\":\"Madrid\",\"pairedRegion\":[]},\"availabilityZoneMappings\"\
- :[{\"logicalZone\":\"1\",\"physicalZone\":\"spaincentral-az3\"},{\"logicalZone\"\
- :\"2\",\"physicalZone\":\"spaincentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\"\
- :\"spaincentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"\
- ,\"name\":\"switzerlandnorth\",\"type\":\"Region\",\"displayName\":\"Switzerland\
- \ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\"\
- ,\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\"\
- :[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"switzerlandnorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"switzerlandnorth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"switzerlandnorth-az2\"}]},{\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/mexicocentral\"\
- ,\"name\":\"mexicocentral\",\"type\":\"Region\",\"displayName\":\"Mexico Central\"\
- ,\"regionalDisplayName\":\"(Mexico) Mexico Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Mexico\"\
- ,\"geographyGroup\":\"Mexico\",\"longitude\":\"-100.389888\",\"latitude\"\
- :\"20.588818\",\"physicalLocation\":\"Quer\xE9taro State\",\"pairedRegion\"\
- :[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"mexicocentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"mexicocentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"mexicocentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"\
- ,\"name\":\"uaenorth\",\"type\":\"Region\",\"displayName\":\"UAE North\",\"\
- regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"UAE\",\"\
- geographyGroup\":\"Middle East\",\"longitude\":\"55.316666\",\"latitude\"\
- :\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\"\
- :\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"uaenorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uaenorth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"uaenorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"\
- ,\"name\":\"brazilsouth\",\"type\":\"Region\",\"displayName\":\"Brazil South\"\
- ,\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Brazil\",\"geographyGroup\":\"South America\",\"longitude\":\"-46.633\"\
- ,\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao Paulo State\",\"pairedRegion\"\
- :[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"brazilsouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"brazilsouth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"brazilsouth-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/israelcentral\"\
- ,\"name\":\"israelcentral\",\"type\":\"Region\",\"displayName\":\"Israel Central\"\
- ,\"regionalDisplayName\":\"(Middle East) Israel Central\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Israel\",\"geographyGroup\":\"Middle East\",\"longitude\":\"33.4506633\"\
- ,\"latitude\":\"31.2655698\",\"physicalLocation\":\"Israel\",\"pairedRegion\"\
- :[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"israelcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"israelcentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"israelcentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\"\
- ,\"name\":\"qatarcentral\",\"type\":\"Region\",\"displayName\":\"Qatar Central\"\
- ,\"regionalDisplayName\":\"(Middle East) Qatar Central\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Qatar\",\"geographyGroup\":\"Middle East\",\"longitude\":\"51.439327\"\
- ,\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\"\
- :[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"qatarcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"qatarcentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"qatarcentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\"\
- ,\"name\":\"centralusstage\",\"type\":\"Region\",\"displayName\":\"Central\
- \ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"\
- usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\"\
- ,\"name\":\"eastusstage\",\"type\":\"Region\",\"displayName\":\"East US (Stage)\"\
- ,\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\"\
- :\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\"\
- :\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\"\
- ,\"name\":\"eastus2stage\",\"type\":\"Region\",\"displayName\":\"East US 2\
- \ (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"\
- usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\"\
- ,\"name\":\"northcentralusstage\",\"type\":\"Region\",\"displayName\":\"North\
- \ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\"\
- ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"\
- geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\"\
- ,\"name\":\"southcentralusstage\",\"type\":\"Region\",\"displayName\":\"South\
- \ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\"\
- ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"\
- geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\"\
- ,\"name\":\"westusstage\",\"type\":\"Region\",\"displayName\":\"West US (Stage)\"\
- ,\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\"\
- :\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\"\
- :\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\"\
- ,\"name\":\"westus2stage\",\"type\":\"Region\",\"displayName\":\"West US 2\
- \ (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"\
- usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\"\
- ,\"name\":\"asia\",\"type\":\"Region\",\"displayName\":\"Asia\",\"regionalDisplayName\"\
- :\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\
- }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\"\
- ,\"name\":\"asiapacific\",\"type\":\"Region\",\"displayName\":\"Asia Pacific\"\
- ,\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"\
- Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\"\
- ,\"name\":\"australia\",\"type\":\"Region\",\"displayName\":\"Australia\"\
- ,\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\"\
- ,\"name\":\"brazil\",\"type\":\"Region\",\"displayName\":\"Brazil\",\"regionalDisplayName\"\
- :\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\"\
- ,\"name\":\"canada\",\"type\":\"Region\",\"displayName\":\"Canada\",\"regionalDisplayName\"\
- :\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\"\
- ,\"name\":\"europe\",\"type\":\"Region\",\"displayName\":\"Europe\",\"regionalDisplayName\"\
- :\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\"\
- ,\"name\":\"france\",\"type\":\"Region\",\"displayName\":\"France\",\"regionalDisplayName\"\
- :\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\"\
- ,\"name\":\"germany\",\"type\":\"Region\",\"displayName\":\"Germany\",\"regionalDisplayName\"\
- :\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\"\
- ,\"name\":\"global\",\"type\":\"Region\",\"displayName\":\"Global\",\"regionalDisplayName\"\
- :\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\"\
- ,\"name\":\"india\",\"type\":\"Region\",\"displayName\":\"India\",\"regionalDisplayName\"\
- :\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israel\"\
- ,\"name\":\"israel\",\"type\":\"Region\",\"displayName\":\"Israel\",\"regionalDisplayName\"\
- :\"Israel\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italy\"\
- ,\"name\":\"italy\",\"type\":\"Region\",\"displayName\":\"Italy\",\"regionalDisplayName\"\
- :\"Italy\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\"\
- ,\"name\":\"japan\",\"type\":\"Region\",\"displayName\":\"Japan\",\"regionalDisplayName\"\
- :\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\"\
- ,\"name\":\"korea\",\"type\":\"Region\",\"displayName\":\"Korea\",\"regionalDisplayName\"\
- :\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealand\"\
- ,\"name\":\"newzealand\",\"type\":\"Region\",\"displayName\":\"New Zealand\"\
- ,\"regionalDisplayName\":\"New Zealand\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\"\
- ,\"name\":\"norway\",\"type\":\"Region\",\"displayName\":\"Norway\",\"regionalDisplayName\"\
- :\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/poland\"\
- ,\"name\":\"poland\",\"type\":\"Region\",\"displayName\":\"Poland\",\"regionalDisplayName\"\
- :\"Poland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatar\"\
- ,\"name\":\"qatar\",\"type\":\"Region\",\"displayName\":\"Qatar\",\"regionalDisplayName\"\
- :\"Qatar\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\"\
- ,\"name\":\"singapore\",\"type\":\"Region\",\"displayName\":\"Singapore\"\
- ,\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\"\
- ,\"name\":\"southafrica\",\"type\":\"Region\",\"displayName\":\"South Africa\"\
- ,\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"\
- Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/sweden\"\
- ,\"name\":\"sweden\",\"type\":\"Region\",\"displayName\":\"Sweden\",\"regionalDisplayName\"\
- :\"Sweden\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\"\
- ,\"name\":\"switzerland\",\"type\":\"Region\",\"displayName\":\"Switzerland\"\
- ,\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\"\
- ,\"name\":\"uae\",\"type\":\"Region\",\"displayName\":\"United Arab Emirates\"\
- ,\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\"\
- :\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\"\
- ,\"name\":\"uk\",\"type\":\"Region\",\"displayName\":\"United Kingdom\",\"\
- regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\"\
- ,\"name\":\"unitedstates\",\"type\":\"Region\",\"displayName\":\"United States\"\
- ,\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"\
- Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\"\
- ,\"name\":\"unitedstateseuap\",\"type\":\"Region\",\"displayName\":\"United\
- \ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\"\
- ,\"name\":\"eastasiastage\",\"type\":\"Region\",\"displayName\":\"East Asia\
- \ (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"\
- metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"asia\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\"\
- ,\"name\":\"southeastasiastage\",\"type\":\"Region\",\"displayName\":\"Southeast\
- \ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\"\
- ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"\
- geography\":\"asia\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilus\"\
- ,\"name\":\"brazilus\",\"type\":\"Region\",\"displayName\":\"Brazil US\",\"\
- regionalDisplayName\":\"(South America) Brazil US\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Brazil\",\"geographyGroup\"\
- :\"South America\",\"longitude\":\"0\",\"latitude\":\"0\",\"physicalLocation\"\
- :\"\",\"pairedRegion\":[{\"name\":\"brazilsoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"\
- ,\"name\":\"eastus2\",\"type\":\"Region\",\"displayName\":\"East US 2\",\"\
- regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\"\
- ,\"regionCategory\":\"Other\",\"geography\":\"United States\",\"geographyGroup\"\
- :\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\"\
- :\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"\
- ,\"name\":\"eastusstg\",\"type\":\"Region\",\"displayName\":\"East US STG\"\
- ,\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Stage (US)\",\"\
- geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\"\
- ,\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"\
- ,\"name\":\"northcentralus\",\"type\":\"Region\",\"displayName\":\"North Central\
- \ US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United\
- \ States\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\"\
- :\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\"\
- :\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"\
- ,\"name\":\"westus\",\"type\":\"Region\",\"displayName\":\"West US\",\"regionalDisplayName\"\
- :\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\"\
- :\"Other\",\"geography\":\"United States\",\"geographyGroup\":\"US\",\"longitude\"\
- :\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\"\
- ,\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"\
- ,\"name\":\"japanwest\",\"type\":\"Region\",\"displayName\":\"Japan West\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Japan\",\"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/jioindiawest\"\
- ,\"name\":\"jioindiawest\",\"type\":\"Region\",\"displayName\":\"Jio India\
- \ West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"\
- India\",\"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/centraluseuap\"\
- ,\"name\":\"centraluseuap\",\"type\":\"Region\",\"displayName\":\"Central\
- \ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"\
- Canary (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\"\
- :\"41.5908\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"eastus2euap\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"centraluseuap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centraluseuap-az2\"\
- }]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"\
- ,\"name\":\"eastus2euap\",\"type\":\"Region\",\"displayName\":\"East US 2\
- \ EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canary\
- \ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\"\
- :\"36.6681\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"centraluseuap\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastus2euap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2euap-az2\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2euap-az3\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"\
- ,\"name\":\"southcentralusstg\",\"type\":\"Region\",\"displayName\":\"South\
- \ Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"Stage (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\"\
- :\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"\
- eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"\
- ,\"name\":\"westcentralus\",\"type\":\"Region\",\"displayName\":\"West Central\
- \ US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United States\"\
- ,\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.89\"\
- ,\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"\
- ,\"name\":\"southafricawest\",\"type\":\"Region\",\"displayName\":\"South\
- \ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"South Africa\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\"\
- ,\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape Town\",\"pairedRegion\"\
- :[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"\
- ,\"name\":\"australiacentral\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"Australia\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"149.1244\"\
- ,\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\"\
- :[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"\
- ,\"name\":\"australiacentral2\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"\
- geography\":\"Australia\",\"geographyGroup\":\"Asia Pacific\",\"longitude\"\
- :\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\"\
- ,\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"\
- ,\"name\":\"australiasoutheast\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"\
- geography\":\"Australia\",\"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/jioindiacentral\"\
- ,\"name\":\"jioindiacentral\",\"type\":\"Region\",\"displayName\":\"Jio India\
- \ Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"India\",\"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\",\"type\":\"Region\",\"displayName\":\"Korea South\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Korea\",\"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\",\"type\":\"Region\",\"displayName\":\"South India\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\"\
- :\"Asia Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\"\
- :\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\"\
- ,\"name\":\"westindia\",\"type\":\"Region\",\"displayName\":\"West India\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\"\
- :\"Asia Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\"\
- :\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"\
- ,\"name\":\"canadaeast\",\"type\":\"Region\",\"displayName\":\"Canada East\"\
- ,\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canada\",\"geographyGroup\"\
- :\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\"\
- :\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"\
- ,\"name\":\"francesouth\",\"type\":\"Region\",\"displayName\":\"France South\"\
- ,\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"France\",\"geographyGroup\"\
- :\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\"\
- :\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"\
- ,\"name\":\"germanynorth\",\"type\":\"Region\",\"displayName\":\"Germany North\"\
- ,\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Germany\",\"geographyGroup\"\
- :\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\"\
- :\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"\
- ,\"name\":\"norwaywest\",\"type\":\"Region\",\"displayName\":\"Norway West\"\
- ,\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Norway\",\"geographyGroup\"\
- :\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\"\
- :\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"\
- ,\"name\":\"switzerlandwest\",\"type\":\"Region\",\"displayName\":\"Switzerland\
- \ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"\
- Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"\
- latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\"\
- :[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"\
- ,\"name\":\"ukwest\",\"type\":\"Region\",\"displayName\":\"UK West\",\"regionalDisplayName\"\
- :\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\"\
- :\"Other\",\"geography\":\"United Kingdom\",\"geographyGroup\":\"Europe\"\
- ,\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"\
- Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"\
- ,\"name\":\"uaecentral\",\"type\":\"Region\",\"displayName\":\"UAE Central\"\
- ,\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"UAE\",\"geographyGroup\"\
- :\"Middle East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"\
- physicalLocation\":\"Abu Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\"\
- ,\"name\":\"brazilsoutheast\",\"type\":\"Region\",\"displayName\":\"Brazil\
- \ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"\
- geography\":\"Brazil\",\"geographyGroup\":\"South America\",\"longitude\"\
- :\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\"\
- :[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"\
- }]}}]}"
+ string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"type\":\"Region\",\"displayName\":\"East
+ US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"type\":\"Region\",\"displayName\":\"South
+ Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"southcentralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southcentralus-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"southcentralus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"type\":\"Region\",\"displayName\":\"West
+ US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"westus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus2-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"westus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"type\":\"Region\",\"displayName\":\"West
+ US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"westus3-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus3-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"westus3-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"type\":\"Region\",\"displayName\":\"Australia
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Australia\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New
+ South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"australiaeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"australiaeast-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"australiaeast-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"type\":\"Region\",\"displayName\":\"Southeast
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Asia
+ Pacific\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"southeastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southeastasia-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"southeastasia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"type\":\"Region\",\"displayName\":\"North
+ Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"northeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"northeurope-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"northeurope-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"type\":\"Region\",\"displayName\":\"Sweden
+ Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Sweden\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"swedencentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"swedencentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"swedencentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"type\":\"Region\",\"displayName\":\"UK
+ South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ Kingdom\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"uksouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uksouth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"uksouth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"type\":\"Region\",\"displayName\":\"West
+ Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"westeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westeurope-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"westeurope-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"type\":\"Region\",\"displayName\":\"Central
+ US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"centralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralus-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"centralus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"type\":\"Region\",\"displayName\":\"South
+ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"South
+ Africa\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.21837\",\"latitude\":\"-25.73134\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"southafricanorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southafricanorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"southafricanorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"type\":\"Region\",\"displayName\":\"Central
+ India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"India\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"centralindia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralindia-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"centralindia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"type\":\"Region\",\"displayName\":\"East
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Asia
+ Pacific\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong
+ Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastasia-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastasia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"type\":\"Region\",\"displayName\":\"Japan
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Japan\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo,
+ Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"japaneast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"japaneast-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"japaneast-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"type\":\"Region\",\"displayName\":\"Korea
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Korea\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"126.978\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"koreacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"koreacentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"koreacentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealandnorth\",\"name\":\"newzealandnorth\",\"type\":\"Region\",\"displayName\":\"New
+ Zealand North\",\"regionalDisplayName\":\"(Asia Pacific) New Zealand North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"New
+ Zealand\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"174.76349\",\"latitude\":\"-36.84853\",\"physicalLocation\":\"Auckland\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"newzealandnorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"newzealandnorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"newzealandnorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"type\":\"Region\",\"displayName\":\"Canada
+ Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Canada\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"canadacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"canadacentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"canadacentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"type\":\"Region\",\"displayName\":\"France
+ Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"France\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.373\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"francecentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"francecentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"francecentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"type\":\"Region\",\"displayName\":\"Germany
+ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Germany\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"germanywestcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"germanywestcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"germanywestcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italynorth\",\"name\":\"italynorth\",\"type\":\"Region\",\"displayName\":\"Italy
+ North\",\"regionalDisplayName\":\"(Europe) Italy North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Italy\",\"geographyGroup\":\"Europe\",\"longitude\":\"9.18109\",\"latitude\":\"45.46888\",\"physicalLocation\":\"Milan\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"italynorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"italynorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"italynorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"type\":\"Region\",\"displayName\":\"Norway
+ East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Norway\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"norwayeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"norwayeast-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"norwayeast-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/polandcentral\",\"name\":\"polandcentral\",\"type\":\"Region\",\"displayName\":\"Poland
+ Central\",\"regionalDisplayName\":\"(Europe) Poland Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Poland\",\"geographyGroup\":\"Europe\",\"longitude\":\"21.01666\",\"latitude\":\"52.23334\",\"physicalLocation\":\"Warsaw\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"polandcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"polandcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"polandcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/spaincentral\",\"name\":\"spaincentral\",\"type\":\"Region\",\"displayName\":\"Spain
+ Central\",\"regionalDisplayName\":\"(Europe) Spain Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Spain\",\"geographyGroup\":\"Europe\",\"longitude\":\"3.4209\",\"latitude\":\"40.4259\",\"physicalLocation\":\"Madrid\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"spaincentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"spaincentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"spaincentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"type\":\"Region\",\"displayName\":\"Switzerland
+ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"switzerlandnorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"switzerlandnorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"switzerlandnorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/mexicocentral\",\"name\":\"mexicocentral\",\"type\":\"Region\",\"displayName\":\"Mexico
+ Central\",\"regionalDisplayName\":\"(Mexico) Mexico Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Mexico\",\"geographyGroup\":\"Mexico\",\"longitude\":\"-100.389888\",\"latitude\":\"20.588818\",\"physicalLocation\":\"Quer\xE9taro
+ State\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"mexicocentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"mexicocentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"mexicocentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"type\":\"Region\",\"displayName\":\"UAE
+ North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"UAE\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"uaenorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uaenorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"uaenorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"type\":\"Region\",\"displayName\":\"Brazil
+ South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Brazil\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao
+ Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"brazilsouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"brazilsouth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"brazilsouth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israelcentral\",\"name\":\"israelcentral\",\"type\":\"Region\",\"displayName\":\"Israel
+ Central\",\"regionalDisplayName\":\"(Middle East) Israel Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Israel\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"33.4506633\",\"latitude\":\"31.2655698\",\"physicalLocation\":\"Israel\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"israelcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"israelcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"israelcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"type\":\"Region\",\"displayName\":\"Qatar
+ Central\",\"regionalDisplayName\":\"(Middle East) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Qatar\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"qatarcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"qatarcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"qatarcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"type\":\"Region\",\"displayName\":\"Central
+ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"type\":\"Region\",\"displayName\":\"East
+ US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"type\":\"Region\",\"displayName\":\"East
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"type\":\"Region\",\"displayName\":\"North
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"type\":\"Region\",\"displayName\":\"South
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"type\":\"Region\",\"displayName\":\"West
+ US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"type\":\"Region\",\"displayName\":\"West
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"type\":\"Region\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"type\":\"Region\",\"displayName\":\"Asia
+ Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"type\":\"Region\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"type\":\"Region\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"type\":\"Region\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"type\":\"Region\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"type\":\"Region\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"type\":\"Region\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"type\":\"Region\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"type\":\"Region\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israel\",\"name\":\"israel\",\"type\":\"Region\",\"displayName\":\"Israel\",\"regionalDisplayName\":\"Israel\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italy\",\"name\":\"italy\",\"type\":\"Region\",\"displayName\":\"Italy\",\"regionalDisplayName\":\"Italy\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"type\":\"Region\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"type\":\"Region\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealand\",\"name\":\"newzealand\",\"type\":\"Region\",\"displayName\":\"New
+ Zealand\",\"regionalDisplayName\":\"New Zealand\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"type\":\"Region\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/poland\",\"name\":\"poland\",\"type\":\"Region\",\"displayName\":\"Poland\",\"regionalDisplayName\":\"Poland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatar\",\"name\":\"qatar\",\"type\":\"Region\",\"displayName\":\"Qatar\",\"regionalDisplayName\":\"Qatar\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"type\":\"Region\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"type\":\"Region\",\"displayName\":\"South
+ Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/sweden\",\"name\":\"sweden\",\"type\":\"Region\",\"displayName\":\"Sweden\",\"regionalDisplayName\":\"Sweden\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"type\":\"Region\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"type\":\"Region\",\"displayName\":\"United
+ Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"type\":\"Region\",\"displayName\":\"United
+ Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"type\":\"Region\",\"displayName\":\"United
+ States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"type\":\"Region\",\"displayName\":\"United
+ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"type\":\"Region\",\"displayName\":\"East
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"asia\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"type\":\"Region\",\"displayName\":\"Southeast
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"asia\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilus\",\"name\":\"brazilus\",\"type\":\"Region\",\"displayName\":\"Brazil
+ US\",\"regionalDisplayName\":\"(South America) Brazil US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Brazil\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"0\",\"latitude\":\"0\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"brazilsoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"type\":\"Region\",\"displayName\":\"East
+ US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"type\":\"Region\",\"displayName\":\"East
+ US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Stage
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"type\":\"Region\",\"displayName\":\"North
+ Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"type\":\"Region\",\"displayName\":\"West
+ US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"type\":\"Region\",\"displayName\":\"Japan
+ West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Japan\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"japanwest-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"japanwest-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"japanwest-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"type\":\"Region\",\"displayName\":\"Jio
+ India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"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/centraluseuap\",\"name\":\"centraluseuap\",\"type\":\"Region\",\"displayName\":\"Central
+ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canary
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"centraluseuap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centraluseuap-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"type\":\"Region\",\"displayName\":\"East
+ US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canary
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastus2euap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2euap-az2\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2euap-az3\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"type\":\"Region\",\"displayName\":\"South
+ Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Stage
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"type\":\"Region\",\"displayName\":\"West
+ Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.89\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"type\":\"Region\",\"displayName\":\"South
+ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"South
+ Africa\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape
+ Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"type\":\"Region\",\"displayName\":\"Australia
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Australia\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"type\":\"Region\",\"displayName\":\"Australia
+ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Australia\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"type\":\"Region\",\"displayName\":\"Australia
+ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Australia\",\"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/jioindiacentral\",\"name\":\"jioindiacentral\",\"type\":\"Region\",\"displayName\":\"Jio
+ India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"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\",\"type\":\"Region\",\"displayName\":\"Korea
+ South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Korea\",\"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\",\"type\":\"Region\",\"displayName\":\"South
+ India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"type\":\"Region\",\"displayName\":\"West
+ India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"type\":\"Region\",\"displayName\":\"Canada
+ East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canada\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"type\":\"Region\",\"displayName\":\"France
+ South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"France\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"type\":\"Region\",\"displayName\":\"Germany
+ North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Germany\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"type\":\"Region\",\"displayName\":\"Norway
+ West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Norway\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"type\":\"Region\",\"displayName\":\"Switzerland
+ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"type\":\"Region\",\"displayName\":\"UK
+ West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ Kingdom\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"type\":\"Region\",\"displayName\":\"UAE
+ Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"UAE\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu
+ Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"type\":\"Region\",\"displayName\":\"Brazil
+ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Brazil\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}"
headers:
cache-control:
- no-cache
content-length:
- - '42817'
+ - '43639'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:55 GMT
+ - Wed, 12 Mar 2025 09:02:04 GMT
expires:
- '-1'
pragma:
@@ -1165,9 +769,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: C87EA2C432F347E497D0E4F132C86C6C Ref B: MAA201060515029 Ref C: 2024-08-29T02:38:53Z'
+ - 'Ref A: 2B71D5CB2267433EAF46B6D8C22DF80F Ref B: MAA201060515025 Ref C: 2025-03-12T09:02:01Z'
status:
code: 200
message: OK
@@ -1185,22 +789,21 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/workspaces?api-version=2021-12-01-preview
response:
body:
- string: '{"value":[{"properties":{"customerId":"a675adfe-58d0-4246-bddc-502864ec8ae4","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-10-12T08:26:27.4919985Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-10-12T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-10-12T08:26:27.4919985Z","modifiedDate":"2023-10-12T08:26:28.5598485Z"},"location":"East
- US","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nori-insights/providers/Microsoft.OperationalInsights/workspaces/nori-ws","name":"nori-ws","type":"Microsoft.OperationalInsights/workspaces","etag":"\"2a0086be-0000-0100-0000-6527adb40000\""},{"properties":{"customerId":"87b376a0-0b8a-4139-bcbf-05d3ebcdde71","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-10-31T07:46:26.8254538Z"},"retentionInDays":365,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-10-31T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-10-31T07:46:26.8254538Z","modifiedDate":"2023-10-31T07:49:53.4376323Z"},"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azClientToolsAssistant-rg/providers/Microsoft.OperationalInsights/workspaces/bot2c7ab4-workspace","name":"bot2c7ab4-workspace","type":"Microsoft.OperationalInsights/workspaces","etag":"\"cb005698-0000-0100-0000-6540b1a10000\""},{"properties":{"customerId":"8da75ec3-01fa-4135-954a-b2d6b18a41ff","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-08-29T02:37:32.2925857Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-08-29T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-08-29T02:37:32.2925857Z","modifiedDate":"2024-08-29T02:37:34.4535927Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcoi6mdd3tp5ckl5uwo6f5zjpdhvgwl3q4ndyvg3qkjuagfotu2mg53apla6krpayu/providers/Microsoft.OperationalInsights/workspaces/clitestvndtbkf7lqmtr","name":"clitestvndtbkf7lqmtr","type":"Microsoft.OperationalInsights/workspaces","etag":"\"12025af1-0000-0700-0000-66cfdeee0000\""},{"properties":{"customerId":"3c2136bb-d233-4ae6-8fd0-49c437e3c520","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-08-29T02:37:37.818782Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-08-29T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-08-29T02:37:37.818782Z","modifiedDate":"2024-08-29T02:37:39.8493237Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcoi6mdd3tp5ckl5uwo6f5zjpdhvgwl3q4ndyvg3qkjuagfotu2mg53apla6krpayu/providers/Microsoft.OperationalInsights/workspaces/clitestz5uvmoa54sevf","name":"clitestz5uvmoa54sevf","type":"Microsoft.OperationalInsights/workspaces","etag":"\"1202ddf1-0000-0700-0000-66cfdef30000\""},{"properties":{"customerId":"274870a6-b44f-4b17-b89a-a9667b3f70ed","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-08-29T02:38:38.6566474Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-08-30T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-08-29T02:38:38.6566474Z","modifiedDate":"2024-08-29T02:38:40.0152892Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6x7gkdgox25ibwaijugmzd5lpktxhmstxxkxwgijd3o2eoxa6emaop2h2i4qfousu/providers/Microsoft.OperationalInsights/workspaces/clitesttiykz6rlw43v6","name":"clitesttiykz6rlw43v6","type":"Microsoft.OperationalInsights/workspaces","etag":"\"120261f7-0000-0700-0000-66cfdf300000\""},{"properties":{"customerId":"387b0a70-eb94-4474-a790-c402a5f96c1a","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-08-29T02:38:44.146127Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-08-29T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-08-29T02:38:44.146127Z","modifiedDate":"2024-08-29T02:38:47.23965Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6x7gkdgox25ibwaijugmzd5lpktxhmstxxkxwgijd3o2eoxa6emaop2h2i4qfousu/providers/Microsoft.OperationalInsights/workspaces/clitestgiqtl6hbi524u","name":"clitestgiqtl6hbi524u","type":"Microsoft.OperationalInsights/workspaces","etag":"\"1202f2f7-0000-0700-0000-66cfdf370000\""}]}'
+ string: '{"value":[{"properties":{"customerId":"9ae01b0a-40f4-4137-bd48-c9e4988e1965","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T05:01:41.2726171Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true,"disableLocalAuth":false},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-13T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T05:01:41.2726171Z","modifiedDate":"2025-03-12T06:17:45.6623432Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.OperationalInsights/workspaces/loganalytic","name":"loganalytic","type":"Microsoft.OperationalInsights/workspaces","etag":"\"25003dc7-0000-0d00-0000-67d127090000\""},{"properties":{"customerId":"bd53c25e-6162-46cb-ab57-dfb838ab63d4","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T08:57:41.0900605Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true,"disableLocalAuth":false},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-12T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T08:57:41.0900605Z","modifiedDate":"2025-03-12T08:57:54.0674493Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG-CAE-250312165646791609/providers/Microsoft.OperationalInsights/workspaces/acctestLAW-250312165646791609","name":"acctestLAW-250312165646791609","type":"Microsoft.OperationalInsights/workspaces","etag":"\"2700c3dc-0000-0d00-0000-67d14c920000\""},{"properties":{"customerId":"adb6172d-fa45-4df9-a7ba-cf83896da4ae","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T09:01:03.8089228Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-12T22:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T09:01:03.8089228Z","modifiedDate":"2025-03-12T09:01:05.5065782Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000003_3ba1eec0-567b-4b50-a2f6-2e0d5bc62728_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000003-ws","name":"managed-clitestai000003-ws","type":"Microsoft.OperationalInsights/workspaces","etag":"\"02001122-0000-0700-0000-67d14d510000\""}]}'
headers:
cache-control:
- no-cache
content-length:
- - '5635'
+ - '2847'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:57 GMT
+ - Wed, 12 Mar 2025 09:02:06 GMT
expires:
- '-1'
pragma:
@@ -1215,9 +818,9 @@ interactions:
- ''
- ''
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 69B84AAACD394C819544035C0667B6A3 Ref B: MAA201060515017 Ref C: 2024-08-29T02:38:57Z'
+ - 'Ref A: 9DB026FC056246A6A10DCFB2A2E27A1A Ref B: MAA201060516053 Ref C: 2025-03-12T09:02:05Z'
status:
code: 200
message: OK
@@ -1236,164 +839,152 @@ interactions:
uri: https://appinsights.azureedge.net/portal/regionMapping.json
response:
body:
- string: "{\r\n \"regions\": {\r\n \"centralus\": {\r\n \"geo\": \"\
- unitedstates\",\r\n \"pairedRegions\": [\r\n \"eastus2\",\r\n\
- \ \"eastus\"\r\n ],\r\n \"laRegionCode\": \"CUS\"\r\n \
- \ },\r\n \"eastus2\": {\r\n \"geo\": \"unitedstates\",\r\n \"\
- pairedRegions\": [\r\n \"centralus\",\r\n \"eastus\"\r\n \
- \ ],\r\n \"laRegionCode\": \"EUS2\"\r\n },\r\n \"eastus\": {\r\
- \n \"geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \
- \ \"westus\"\r\n ],\r\n \"laRegionCode\": \"EUS\"\r\n },\r\n\
- \ \"northcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n \"\
- pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \"laRegionCode\"\
- : \"NCUS\"\r\n },\r\n \"southcentralus\": {\r\n \"geo\": \"unitedstates\"\
- ,\r\n \"pairedRegions\": [\r\n \"northcentralus\"\r\n ],\r\
- \n \"laRegionCode\": \"SCUS\"\r\n },\r\n \"westus2\": {\r\n \
- \ \"geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \"\
- westcentralus\"\r\n ],\r\n \"laRegionCode\": \"WUS2\"\r\n },\r\
- \n \"westus3\": {\r\n \"geo\": \"unitedstates\",\r\n \"pairedRegions\"\
- : [\r\n \"westus2\"\r\n ],\r\n \"laRegionCode\": \"USW3\"\
- \r\n },\r\n \"westcentralus\": {\r\n \"geo\": \"unitedstates\"\
- ,\r\n \"pairedRegions\": [\r\n \"westus2\"\r\n ],\r\n \
- \ \"laRegionCode\": \"WCUS\"\r\n },\r\n \"westus\": {\r\n \"\
- geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \"eastus\"\
- \r\n ],\r\n \"laRegionCode\": \"WUS\"\r\n },\r\n \"canadacentral\"\
- : {\r\n \"geo\": \"canada\",\r\n \"pairedRegions\": [\r\n \
- \ \"canadaeast\"\r\n ],\r\n \"laRegionCode\": \"CCAN\"\r\n },\r\
- \n \"canadaeast\": {\r\n \"geo\": \"canada\",\r\n \"pairedRegions\"\
- : [\r\n \"canadacentral\"\r\n ],\r\n \"laRegionCode\": \"\
- \"\r\n },\r\n \"brazilsouth\": {\r\n \"geo\": \"brazil\",\r\n \
- \ \"pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \
- \ \"laRegionCode\": \"CQ\"\r\n },\r\n \"eastasia\": {\r\n \"\
- geo\": \"asiapacific\",\r\n \"pairedRegions\": [\r\n \"southeastasia\"\
- \r\n ],\r\n \"laRegionCode\": \"EA\"\r\n },\r\n \"southeastasia\"\
- : {\r\n \"geo\": \"asiapacific\",\r\n \"pairedRegions\": [\r\n \
- \ \"eastasia\"\r\n ],\r\n \"laRegionCode\": \"SEA\"\r\n \
- \ },\r\n \"australiacentral\": {\r\n \"geo\": \"australia\",\r\n\
- \ \"pairedRegions\": [\r\n \"australiacentral2\",\r\n \"\
- australiaeast\"\r\n ],\r\n \"laRegionCode\": \"CAU\"\r\n },\r\
- \n \"australiacentral2\": {\r\n \"geo\": \"australia\",\r\n \"\
- pairedRegions\": [\r\n \"australiacentral\",\r\n \"australiaeast\"\
- \r\n ],\r\n \"laRegionCode\": \"CBR2\"\r\n },\r\n \"australiaeast\"\
- : {\r\n \"geo\": \"australia\",\r\n \"pairedRegions\": [\r\n \
- \ \"australiasoutheast\"\r\n ],\r\n \"laRegionCode\": \"EAU\"\
- \r\n },\r\n \"australiasoutheast\": {\r\n \"geo\": \"australia\"\
- ,\r\n \"pairedRegions\": [\r\n \"australiaeast\"\r\n ],\r\
- \n \"laRegionCode\": \"SEAU\"\r\n },\r\n \"chinaeast\": {\r\n \
- \ \"geo\": \"china\",\r\n \"pairedRegions\": [\r\n \"chinanorth\"\
- ,\r\n \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n\
- \ },\r\n \"chinanorth\": {\r\n \"geo\": \"china\",\r\n \"\
- pairedRegions\": [\r\n \"chinaeast\",\r\n \"chinaeast2\"\r\n\
- \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"chinaeast2\"\
- : {\r\n \"geo\": \"china\",\r\n \"pairedRegions\": [\r\n \
- \ \"chinanorth2\"\r\n ],\r\n \"laRegionCode\": \"CNE2\"\r\n },\r\
- \n \"chinanorth2\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\"\
- : [\r\n \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\
- \n },\r\n \"chinaeast3\": {\r\n \"geo\": \"china\",\r\n \"\
- pairedRegions\": [\r\n \"chinanorth3\"\r\n ],\r\n \"laRegionCode\"\
- : \"CNE3\"\r\n },\r\n \"chinanorth3\": {\r\n \"geo\": \"china\"\
- ,\r\n \"pairedRegions\": [\r\n \"chinaeast3\"\r\n ],\r\n\
- \ \"laRegionCode\": \"CNN3\"\r\n },\r\n \"centralindia\": {\r\n\
- \ \"geo\": \"india\",\r\n \"pairedRegions\": [\r\n \"southindia\"\
- \r\n ],\r\n \"laRegionCode\": \"CID\"\r\n },\r\n \"southindia\"\
- : {\r\n \"geo\": \"india\",\r\n \"pairedRegions\": [\r\n \
- \ \"centralindia\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\
- \n \"westindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\"\
- : [\r\n \"southindia\",\r\n \"centralindia\"\r\n ],\r\n\
- \ \"laRegionCode\": \"\"\r\n },\r\n \"jioindiacentral\": {\r\n\
- \ \"geo\": \"india\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\"\
- : \"JINC\"\r\n },\r\n \"jioindiawest\": {\r\n \"geo\": \"india\"\
- ,\r\n \"pairedRegions\": [],\r\n \"laRegionCode\": \"JINW\"\r\n\
- \ },\r\n \"japaneast\": {\r\n \"geo\": \"japan\",\r\n \"pairedRegions\"\
- : [\r\n \"japanwest\"\r\n ],\r\n \"laRegionCode\": \"EJP\"\
- \r\n },\r\n \"japanwest\": {\r\n \"geo\": \"japan\",\r\n \"\
- pairedRegions\": [\r\n \"japaneast\"\r\n ],\r\n \"laRegionCode\"\
- : \"OS\"\r\n },\r\n \"koreacentral\": {\r\n \"geo\": \"korea\"\
- ,\r\n \"pairedRegions\": [\r\n \"koreasouth\"\r\n ],\r\n\
- \ \"laRegionCode\": \"SE\"\r\n },\r\n \"koreasouth\": {\r\n \
- \ \"geo\": \"korea\",\r\n \"pairedRegions\": [\r\n \"koreacentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"northeurope\"\
- : {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\": [\r\n \
- \ \"westeurope\"\r\n ],\r\n \"laRegionCode\": \"NEU\"\r\n },\r\
- \n \"westeurope\": {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\"\
- : [\r\n \"northeurope\"\r\n ],\r\n \"laRegionCode\": \"WEU\"\
- \r\n },\r\n \"francecentral\": {\r\n \"geo\": \"france\",\r\n \
- \ \"pairedRegions\": [\r\n \"francesouth\"\r\n ],\r\n \
- \ \"laRegionCode\": \"PAR\"\r\n },\r\n \"francesouth\": {\r\n \
- \ \"geo\": \"france\",\r\n \"pairedRegions\": [\r\n \"francecentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"uksouth\"\
- : {\r\n \"geo\": \"unitedkingdom\",\r\n \"pairedRegions\": [\r\n\
- \ \"ukwest\"\r\n ],\r\n \"laRegionCode\": \"SUK\"\r\n \
- \ },\r\n \"ukwest\": {\r\n \"geo\": \"unitedkingdom\",\r\n \"\
- pairedRegions\": [\r\n \"uksouth\"\r\n ],\r\n \"laRegionCode\"\
- : \"WUK\"\r\n },\r\n \"germanycentral\": {\r\n \"geo\": \"germany\"\
- ,\r\n \"pairedRegions\": [\r\n \"germanynortheast\"\r\n ],\r\
- \n \"laRegionCode\": \"\"\r\n },\r\n \"germanynortheast\": {\r\n\
- \ \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanycentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"germanywestcentral\"\
- : {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \
- \ \"germanynorth\"\r\n ],\r\n \"laRegionCode\": \"DEWC\"\r\n \
- \ },\r\n \"germanynorth\": {\r\n \"geo\": \"germany\",\r\n \
- \ \"pairedRegions\": [\r\n \"germanywestcentral\"\r\n ],\r\n \
- \ \"laRegionCode\": \"DEN\"\r\n },\r\n \"switzerlandwest\": {\r\n\
- \ \"geo\": \"switzerland\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"CHW\"\r\n },\r\n \"switzerlandnorth\": {\r\n \
- \ \"geo\": \"switzerland\",\r\n \"pairedRegions\": [],\r\n \"\
- laRegionCode\": \"CHN\"\r\n },\r\n \"swedencentral\": {\r\n \"\
- geo\": \"sweden\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\"\
- : \"SEC\"\r\n },\r\n \"swedensouth\": {\r\n \"geo\": \"sweden\"\
- ,\r\n \"pairedRegions\": [],\r\n \"laRegionCode\": \"SES\"\r\n \
- \ },\r\n \"norwaywest\": {\r\n \"geo\": \"norway\",\r\n \"\
- pairedRegions\": [],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"norwayeast\"\
- : {\r\n \"geo\": \"norway\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"\"\r\n },\r\n \"southafricanorth\": {\r\n \
- \ \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \"southafricawest\"\
- \r\n ],\r\n \"laRegionCode\": \"JNB\"\r\n },\r\n \"southafricawest\"\
- : {\r\n \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \
- \ \"southafricanorth\"\r\n ],\r\n \"laRegionCode\": \"CPT\"\r\n\
- \ },\r\n \"uaenorth\": {\r\n \"geo\": \"unitedarabemirates\",\r\
- \n \"pairedRegions\": [],\r\n \"laRegionCode\": \"\"\r\n },\r\
- \n \"uaecentral\": {\r\n \"geo\": \"unitedarabemirates\",\r\n \
- \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"AUH\"\r\n },\r\n\
- \ \"qatarcentral\": {\r\n \"geo\": \"qatar\",\r\n \"pairedRegions\"\
- : [],\r\n \"laRegionCode\": \"QAC\"\r\n },\r\n \"polandcentral\"\
- : {\r\n \"geo\": \"poland\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"PLC\"\r\n },\r\n \"israelcentral\": {\r\n \
- \ \"geo\": \"israel\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\"\
- : \"ILC\"\r\n },\r\n \"italynorth\": {\r\n \"geo\": \"italy\",\r\
- \n \"pairedRegions\": [],\r\n \"laRegionCode\": \"ITN\"\r\n },\r\
- \n \"spaincentral\": {\r\n \"geo\": \"spain\",\r\n \"pairedRegions\"\
- : [],\r\n \"laRegionCode\": \"ESC\"\r\n },\r\n \"mexicocentral\"\
- : {\r\n \"geo\": \"mexico\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"MXC\"\r\n },\r\n \"taiwannorth\": {\r\n \
- \ \"geo\": \"taiwan\",\r\n \"pairedRegions\": [\r\n \"taiwannorthwest\"\
- \r\n ],\r\n \"laRegionCode\": \"TWN\"\r\n },\r\n \"taiwannorthwest\"\
- : {\r\n \"geo\": \"taiwan\",\r\n \"pairedRegions\": [\r\n \
- \ \"taiwannorth\"\r\n ],\r\n \"laRegionCode\": \"TWNW\"\r\n \
- \ },\r\n \"usdodcentral\": {\r\n \"geo\": \"azuregovernment\",\r\n\
- \ \"pairedRegions\": [\r\n \"usdodeast\"\r\n ],\r\n \
- \ \"laRegionCode\": \"\"\r\n },\r\n \"usdodeast\": {\r\n \"geo\"\
- : \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usdodcentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"usgovarizona\"\
- : {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\
- \n \"usgovtexas\"\r\n ],\r\n \"laRegionCode\": \"PHX\"\r\n\
- \ },\r\n \"usgoviowa\": {\r\n \"geo\": \"azuregovernment\",\r\n\
- \ \"pairedRegions\": [\r\n \"usgovvirginia\"\r\n ],\r\n \
- \ \"laRegionCode\": \"\"\r\n },\r\n \"usgovtexas\": {\r\n \"\
- geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usgovarizona\"\
- \r\n ],\r\n \"laRegionCode\": \"SN\"\r\n },\r\n \"usgovvirginia\"\
- : {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\
- \n \"usgoviowa\",\r\n \"usgovarizona\"\r\n ],\r\n \
- \ \"laRegionCode\": \"USBN1\"\r\n },\r\n \"ussecwest\": {\r\n \"\
- geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usseceast\"\
- \r\n ],\r\n \"laRegionCode\": \"RXW\"\r\n },\r\n \"usseceast\"\
- : {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\
- \n \"ussecwest\"\r\n ],\r\n \"laRegionCode\": \"RXE\"\r\n\
- \ },\r\n \"usnatwest\": {\r\n \"geo\": \"azuregovernment\",\r\n\
- \ \"pairedRegions\": [\r\n \"usnateast\"\r\n ],\r\n \
- \ \"laRegionCode\": \"EXW\"\r\n },\r\n \"usnateast\": {\r\n \"\
- geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usnatwest\"\
- \r\n ],\r\n \"laRegionCode\": \"EXE\"\r\n }\r\n }\r\n}"
+ string: "{\r\n \"regions\": {\r\n \"centralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"eastus2\",\r\n \"eastus\"\r\n
+ \ ],\r\n \"laRegionCode\": \"CUS\"\r\n },\r\n \"eastus2\":
+ {\r\n \"geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \"centralus\",\r\n
+ \ \"eastus\"\r\n ],\r\n \"laRegionCode\": \"EUS2\"\r\n },\r\n
+ \ \"eastus\": {\r\n \"geo\": \"unitedstates\",\r\n \"pairedRegions\":
+ [\r\n \"westus\"\r\n ],\r\n \"laRegionCode\": \"EUS\"\r\n
+ \ },\r\n \"northcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"NCUS\"\r\n },\r\n \"southcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"northcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"SCUS\"\r\n },\r\n \"westus2\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"westcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"WUS2\"\r\n },\r\n \"westus3\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"westus2\"\r\n ],\r\n \"laRegionCode\":
+ \"USW3\"\r\n },\r\n \"westcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"westus2\"\r\n ],\r\n \"laRegionCode\":
+ \"WCUS\"\r\n },\r\n \"westus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"eastus\"\r\n ],\r\n \"laRegionCode\":
+ \"WUS\"\r\n },\r\n \"canadacentral\": {\r\n \"geo\": \"canada\",\r\n
+ \ \"pairedRegions\": [\r\n \"canadaeast\"\r\n ],\r\n \"laRegionCode\":
+ \"CCAN\"\r\n },\r\n \"canadaeast\": {\r\n \"geo\": \"canada\",\r\n
+ \ \"pairedRegions\": [\r\n \"canadacentral\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"brazilsouth\": {\r\n \"geo\": \"brazil\",\r\n
+ \ \"pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"CQ\"\r\n },\r\n \"eastasia\": {\r\n \"geo\": \"asiapacific\",\r\n
+ \ \"pairedRegions\": [\r\n \"southeastasia\"\r\n ],\r\n \"laRegionCode\":
+ \"EA\"\r\n },\r\n \"southeastasia\": {\r\n \"geo\": \"asiapacific\",\r\n
+ \ \"pairedRegions\": [\r\n \"eastasia\"\r\n ],\r\n \"laRegionCode\":
+ \"SEA\"\r\n },\r\n \"australiacentral\": {\r\n \"geo\": \"australia\",\r\n
+ \ \"pairedRegions\": [\r\n \"australiacentral2\",\r\n \"australiaeast\"\r\n
+ \ ],\r\n \"laRegionCode\": \"CAU\"\r\n },\r\n \"australiacentral2\":
+ {\r\n \"geo\": \"australia\",\r\n \"pairedRegions\": [\r\n \"australiacentral\",\r\n
+ \ \"australiaeast\"\r\n ],\r\n \"laRegionCode\": \"CBR2\"\r\n
+ \ },\r\n \"australiaeast\": {\r\n \"geo\": \"australia\",\r\n \"pairedRegions\":
+ [\r\n \"australiasoutheast\"\r\n ],\r\n \"laRegionCode\":
+ \"EAU\"\r\n },\r\n \"australiasoutheast\": {\r\n \"geo\": \"australia\",\r\n
+ \ \"pairedRegions\": [\r\n \"australiaeast\"\r\n ],\r\n \"laRegionCode\":
+ \"SEAU\"\r\n },\r\n \"chinaeast\": {\r\n \"geo\": \"china\",\r\n
+ \ \"pairedRegions\": [\r\n \"chinanorth\",\r\n \"chinaeast2\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"chinanorth\":
+ {\r\n \"geo\": \"china\",\r\n \"pairedRegions\": [\r\n \"chinaeast\",\r\n
+ \ \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n
+ \ \"chinaeast2\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinanorth2\"\r\n ],\r\n \"laRegionCode\": \"CNE2\"\r\n
+ \ },\r\n \"chinanorth2\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n
+ \ },\r\n \"chinaeast3\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinanorth3\"\r\n ],\r\n \"laRegionCode\": \"CNE3\"\r\n
+ \ },\r\n \"chinanorth3\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinaeast3\"\r\n ],\r\n \"laRegionCode\": \"CNN3\"\r\n
+ \ },\r\n \"centralindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [\r\n \"southindia\"\r\n ],\r\n \"laRegionCode\": \"CID\"\r\n
+ \ },\r\n \"southindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [\r\n \"centralindia\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n
+ \ },\r\n \"westindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [\r\n \"southindia\",\r\n \"centralindia\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"jioindiacentral\": {\r\n \"geo\": \"india\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"JINC\"\r\n },\r\n
+ \ \"jioindiawest\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"JINW\"\r\n },\r\n \"japaneast\": {\r\n
+ \ \"geo\": \"japan\",\r\n \"pairedRegions\": [\r\n \"japanwest\"\r\n
+ \ ],\r\n \"laRegionCode\": \"EJP\"\r\n },\r\n \"japanwest\":
+ {\r\n \"geo\": \"japan\",\r\n \"pairedRegions\": [\r\n \"japaneast\"\r\n
+ \ ],\r\n \"laRegionCode\": \"OS\"\r\n },\r\n \"koreacentral\":
+ {\r\n \"geo\": \"korea\",\r\n \"pairedRegions\": [\r\n \"koreasouth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"SE\"\r\n },\r\n \"koreasouth\":
+ {\r\n \"geo\": \"korea\",\r\n \"pairedRegions\": [\r\n \"koreacentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"northeurope\":
+ {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\": [\r\n \"westeurope\"\r\n
+ \ ],\r\n \"laRegionCode\": \"NEU\"\r\n },\r\n \"westeurope\":
+ {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\": [\r\n \"northeurope\"\r\n
+ \ ],\r\n \"laRegionCode\": \"WEU\"\r\n },\r\n \"francecentral\":
+ {\r\n \"geo\": \"france\",\r\n \"pairedRegions\": [\r\n \"francesouth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"PAR\"\r\n },\r\n \"francesouth\":
+ {\r\n \"geo\": \"france\",\r\n \"pairedRegions\": [\r\n \"francecentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"uksouth\": {\r\n
+ \ \"geo\": \"unitedkingdom\",\r\n \"pairedRegions\": [\r\n \"ukwest\"\r\n
+ \ ],\r\n \"laRegionCode\": \"SUK\"\r\n },\r\n \"ukwest\": {\r\n
+ \ \"geo\": \"unitedkingdom\",\r\n \"pairedRegions\": [\r\n \"uksouth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"WUK\"\r\n },\r\n \"germanycentral\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanynortheast\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"germanynortheast\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanycentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"germanywestcentral\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanynorth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"DEWC\"\r\n },\r\n \"germanynorth\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanywestcentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"DEN\"\r\n },\r\n \"switzerlandwest\":
+ {\r\n \"geo\": \"switzerland\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"CHW\"\r\n },\r\n \"switzerlandnorth\": {\r\n \"geo\": \"switzerland\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"CHN\"\r\n },\r\n
+ \ \"swedencentral\": {\r\n \"geo\": \"sweden\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"SEC\"\r\n },\r\n \"swedensouth\": {\r\n
+ \ \"geo\": \"sweden\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"SES\"\r\n },\r\n \"norwaywest\": {\r\n \"geo\": \"norway\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"\"\r\n },\r\n
+ \ \"norwayeast\": {\r\n \"geo\": \"norway\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"southafricanorth\":
+ {\r\n \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \"southafricawest\"\r\n
+ \ ],\r\n \"laRegionCode\": \"JNB\"\r\n },\r\n \"southafricawest\":
+ {\r\n \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \"southafricanorth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"CPT\"\r\n },\r\n \"uaenorth\":
+ {\r\n \"geo\": \"unitedarabemirates\",\r\n \"pairedRegions\": [],\r\n
+ \ \"laRegionCode\": \"\"\r\n },\r\n \"uaecentral\": {\r\n \"geo\":
+ \"unitedarabemirates\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"AUH\"\r\n },\r\n \"qatarcentral\": {\r\n \"geo\": \"qatar\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"QAC\"\r\n },\r\n
+ \ \"polandcentral\": {\r\n \"geo\": \"poland\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"PLC\"\r\n },\r\n \"israelcentral\":
+ {\r\n \"geo\": \"israel\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"ILC\"\r\n },\r\n \"italynorth\": {\r\n \"geo\": \"italy\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"ITN\"\r\n },\r\n
+ \ \"spaincentral\": {\r\n \"geo\": \"spain\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"ESC\"\r\n },\r\n \"mexicocentral\":
+ {\r\n \"geo\": \"mexico\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"MXC\"\r\n },\r\n \"taiwannorth\": {\r\n \"geo\": \"taiwan\",\r\n
+ \ \"pairedRegions\": [\r\n \"taiwannorthwest\"\r\n ],\r\n
+ \ \"laRegionCode\": \"TWN\"\r\n },\r\n \"taiwannorthwest\": {\r\n
+ \ \"geo\": \"taiwan\",\r\n \"pairedRegions\": [\r\n \"taiwannorth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"TWNW\"\r\n },\r\n \"newzealandnorth\":
+ {\r\n \"geo\": \"newzealand\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"NZN\"\r\n },\r\n \"usdodcentral\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usdodeast\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"usdodeast\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usdodcentral\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"usgovarizona\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgovtexas\"\r\n ],\r\n \"laRegionCode\":
+ \"PHX\"\r\n },\r\n \"usgoviowa\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgovvirginia\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"usgovtexas\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgovarizona\"\r\n ],\r\n \"laRegionCode\":
+ \"SN\"\r\n },\r\n \"usgovvirginia\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgoviowa\",\r\n \"usgovarizona\"\r\n
+ \ ],\r\n \"laRegionCode\": \"USBN1\"\r\n },\r\n \"ussecwest\":
+ {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n
+ \ \"usseceast\"\r\n ],\r\n \"laRegionCode\": \"RXW\"\r\n },\r\n
+ \ \"usseceast\": {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\":
+ [\r\n \"ussecwest\"\r\n ],\r\n \"laRegionCode\": \"RXE\"\r\n
+ \ },\r\n \"ussecwestcentral\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usseceast\"\r\n ],\r\n \"laRegionCode\":
+ \"USSWC\"\r\n },\r\n \"usnatwest\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usnateast\"\r\n ],\r\n \"laRegionCode\":
+ \"EXW\"\r\n },\r\n \"usnateast\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usnatwest\"\r\n ],\r\n \"laRegionCode\":
+ \"EXE\"\r\n }\r\n }\r\n}"
headers:
access-control-allow-origin:
- '*'
@@ -1402,26 +993,25 @@ interactions:
connection:
- keep-alive
content-length:
- - '9992'
+ - '10267'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:59 GMT
+ - Wed, 12 Mar 2025 09:02:07 GMT
last-modified:
- - Wed, 07 Aug 2024 00:12:57 GMT
+ - Tue, 25 Feb 2025 16:33:19 GMT
transfer-encoding:
- chunked
vary:
- Accept-Encoding
- - Accept-Encoding
- - Accept-Encoding
- - Accept-Encoding
x-azure-ref:
- - 20240829T023858Z-r17fd4bbf4ftbq8qh11qtzkhh000000007b000000000wm9n
+ - 20250312T090207Z-16bc6c9867bsz44thC1SG18b90000000041000000000u8n6
x-cache:
- - TCP_REVALIDATED_HIT
+ - TCP_HIT
+ x-cache-info:
+ - L1_T2
x-fd-int-roxy-purgeid:
- - '0'
+ - '37550646'
x-ms-blob-type:
- BlockBlob
x-ms-lease-status:
@@ -1447,13 +1037,13 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
@@ -1462,7 +1052,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:01 GMT
+ - Wed, 12 Mar 2025 09:02:09 GMT
expires:
- '-1'
pragma:
@@ -1478,7 +1068,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: 5C070108C4EE41A6A63F1A3D16DD09F9 Ref B: MAA201060513049 Ref C: 2024-08-29T02:39:01Z'
+ - 'Ref A: 83490792512A4B95B741ACD2E3A8B779 Ref B: MAA201060516017 Ref C: 2025-03-12T09:02:08Z'
x-powered-by:
- ASP.NET
status:
@@ -1498,24 +1088,24 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004","name":"clitestfunction000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-199.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:38:52.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.94","possibleInboundIpAddresses":"40.112.243.94","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-199.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.112.243.94","possibleOutboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.118.240.156,40.118.247.245,168.62.220.91,40.118.242.244,40.118.243.209,138.91.77.15,137.135.0.255,40.118.246.112,40.118.246.249,104.40.32.182,137.135.11.148,137.135.14.172,104.40.38.109,40.112.212.230,40.78.96.41,168.62.197.248,104.42.96.127,40.78.96.194,40.118.163.161,40.118.244.117,104.40.32.64,168.62.223.24,104.40.39.217,138.91.79.109,40.112.243.94","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-199","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T09:02:00.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98,40.112.243.16","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,104.45.226.98","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,20.253.136.166,40.112.177.65,40.112.177.108,13.64.241.4,40.112.177.69,40.112.183.10,20.245.136.194,20.245.136.62,20.237.169.69,20.237.203.111,20.237.172.166,20.237.168.187,168.61.2.18,168.62.205.43,137.135.31.15,168.62.213.170,138.91.144.254,138.91.189.77,104.45.226.98","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7252'
+ - '7118'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:03 GMT
+ - Wed, 12 Mar 2025 09:02:10 GMT
etag:
- - '"1DAF9BC95F9E0C0"'
+ - '"1DB932D6A9B36D0"'
expires:
- '-1'
pragma:
@@ -1529,9 +1119,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 8B37E40C3D754BE09AB94E24C8CDD729 Ref B: MAA201060516049 Ref C: 2024-08-29T02:39:02Z'
+ - 'Ref A: 0DDE6F089B044855A9403C8990AAF0FF Ref B: MAA201060516035 Ref C: 2025-03-12T09:02:10Z'
x-powered-by:
- ASP.NET
status:
@@ -1539,7 +1129,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION":
- "~20", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
+ "~22", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
Accept:
@@ -1557,13 +1147,13 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
@@ -1572,9 +1162,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:05 GMT
+ - Wed, 12 Mar 2025 09:02:13 GMT
etag:
- - '"1DAF9BC95F9E0C0"'
+ - '"1DB932D6A9B36D0"'
expires:
- '-1'
pragma:
@@ -1588,11 +1178,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 4B82EEB0565F46E8835FEFB85C96F1BB Ref B: MAA201060515049 Ref C: 2024-08-29T02:39:04Z'
+ - 'Ref A: CB9ED526EB094B3980B2E37C1BF275C7 Ref B: MAA201060514023 Ref C: 2025-03-12T09:02:11Z'
x-powered-by:
- ASP.NET
status:
@@ -1612,36 +1202,37 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501f574-0000-0200-0000-66cfdf0c0000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000003\"\
- ,\r\n \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"4c14a899-4f29-4bc6-a528-4c5b19f30ae5\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"2cb24b6c-7c30-48e4-8067-46f6a93b31b6\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=2cb24b6c-7c30-48e4-8067-46f6a93b31b6;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=4c14a899-4f29-4bc6-a528-4c5b19f30ae5\"\
- ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-08-29T02:38:03.9928502+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac000564-0000-0200-0000-67d14d5b0000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000003\",\r\n
+ \ \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"3ba1eec0-567b-4b50-a2f6-2e0d5bc62728\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"947ae263-994a-428a-8cb8-5a53b13f8584\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=947ae263-994a-428a-8cb8-5a53b13f8584;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=3ba1eec0-567b-4b50-a2f6-2e0d5bc62728\",\r\n
+ \ \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2025-03-12T09:01:00.6223978+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000003_3ba1eec0-567b-4b50-a2f6-2e0d5bc62728_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000003-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1297'
+ - '1530'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:39:07 GMT
+ - Wed, 12 Mar 2025 09:02:15 GMT
expires:
- '-1'
pragma:
@@ -1655,9 +1246,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 6DD30B42174C484D836B0BB6FE1042F7 Ref B: MAA201060516023 Ref C: 2024-08-29T02:39:06Z'
+ - 'Ref A: 963F1EC300314ABBB852124E847AE96F Ref B: MAA201060514049 Ref C: 2025-03-12T09:02:14Z'
x-powered-by:
- ASP.NET
status:
@@ -1679,13 +1270,13 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
@@ -1694,7 +1285,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:09 GMT
+ - Wed, 12 Mar 2025 09:02:16 GMT
expires:
- '-1'
pragma:
@@ -1710,7 +1301,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: D0DCB6E8FDFE4122AB7537A04E5D1025 Ref B: MAA201060514053 Ref C: 2024-08-29T02:39:09Z'
+ - 'Ref A: 897E8728EBD54A21B128024491E7D96B Ref B: MAA201060515019 Ref C: 2025-03-12T09:02:16Z'
x-powered-by:
- ASP.NET
status:
@@ -1730,24 +1321,24 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004","name":"clitestfunction000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-199.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:39:05.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.94","possibleInboundIpAddresses":"40.112.243.94","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-199.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.112.243.94","possibleOutboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.118.240.156,40.118.247.245,168.62.220.91,40.118.242.244,40.118.243.209,138.91.77.15,137.135.0.255,40.118.246.112,40.118.246.249,104.40.32.182,137.135.11.148,137.135.14.172,104.40.38.109,40.112.212.230,40.78.96.41,168.62.197.248,104.42.96.127,40.78.96.194,40.118.163.161,40.118.244.117,104.40.32.64,168.62.223.24,104.40.39.217,138.91.79.109,40.112.243.94","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-199","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T09:02:13.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98,40.112.243.16","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,104.45.226.98","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,20.253.136.166,40.112.177.65,40.112.177.108,13.64.241.4,40.112.177.69,40.112.183.10,20.245.136.194,20.245.136.62,20.237.169.69,20.237.203.111,20.237.172.166,20.237.168.187,168.61.2.18,168.62.205.43,137.135.31.15,168.62.213.170,138.91.144.254,138.91.189.77,104.45.226.98","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7252'
+ - '7117'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:11 GMT
+ - Wed, 12 Mar 2025 09:02:17 GMT
etag:
- - '"1DAF9BC9DE5C560"'
+ - '"1DB932D72313340"'
expires:
- '-1'
pragma:
@@ -1761,9 +1352,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 57DC308981CE4BE3955DBD42DB55E24A Ref B: MAA201060516019 Ref C: 2024-08-29T02:39:10Z'
+ - 'Ref A: 2F9D0BB27166469A9975581D0303FD91 Ref B: MAA201060514035 Ref C: 2025-03-12T09:02:17Z'
x-powered-by:
- ASP.NET
status:
@@ -1771,10 +1362,10 @@ interactions:
message: OK
- request:
body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION":
- "~20", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
+ "~22", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
- "APPINSIGHTS_INSTRUMENTATIONKEY": "2cb24b6c-7c30-48e4-8067-46f6a93b31b6", "APPINSIGHTS_CONNECTIONSTRING":
- "InstrumentationKey=2cb24b6c-7c30-48e4-8067-46f6a93b31b6;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=4c14a899-4f29-4bc6-a528-4c5b19f30ae5"}}'
+ "APPINSIGHTS_INSTRUMENTATIONKEY": "947ae263-994a-428a-8cb8-5a53b13f8584", "APPINSIGHTS_CONNECTIONSTRING":
+ "InstrumentationKey=947ae263-994a-428a-8cb8-5a53b13f8584;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=3ba1eec0-567b-4b50-a2f6-2e0d5bc62728"}}'
headers:
Accept:
- application/json
@@ -1791,13 +1382,13 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"2cb24b6c-7c30-48e4-8067-46f6a93b31b6","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=2cb24b6c-7c30-48e4-8067-46f6a93b31b6;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=4c14a899-4f29-4bc6-a528-4c5b19f30ae5"}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"947ae263-994a-428a-8cb8-5a53b13f8584","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=947ae263-994a-428a-8cb8-5a53b13f8584;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=3ba1eec0-567b-4b50-a2f6-2e0d5bc62728"}}'
headers:
cache-control:
- no-cache
@@ -1806,9 +1397,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:13 GMT
+ - Wed, 12 Mar 2025 09:02:19 GMT
etag:
- - '"1DAF9BC9DE5C560"'
+ - '"1DB932D72313340"'
expires:
- '-1'
pragma:
@@ -1822,11 +1413,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 798A0F382753487BB4ED6E7F736F1A36 Ref B: MAA201060515031 Ref C: 2024-08-29T02:39:11Z'
+ - 'Ref A: 938639D5CEA34E81B042320ABC588664 Ref B: MAA201060513029 Ref C: 2025-03-12T09:02:18Z'
x-powered-by:
- ASP.NET
status:
@@ -1848,13 +1439,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"2cb24b6c-7c30-48e4-8067-46f6a93b31b6","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=2cb24b6c-7c30-48e4-8067-46f6a93b31b6;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=4c14a899-4f29-4bc6-a528-4c5b19f30ae5"}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"947ae263-994a-428a-8cb8-5a53b13f8584","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=947ae263-994a-428a-8cb8-5a53b13f8584;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=3ba1eec0-567b-4b50-a2f6-2e0d5bc62728"}}'
headers:
cache-control:
- no-cache
@@ -1863,7 +1454,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:14 GMT
+ - Wed, 12 Mar 2025 09:02:23 GMT
expires:
- '-1'
pragma:
@@ -1879,7 +1470,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: BE4D6B7B4B534A8FA6C2EC781DE28B47 Ref B: MAA201060515029 Ref C: 2024-08-29T02:39:14Z'
+ - 'Ref A: 92AFD01AF8574DDABD38E3420E4EE5AE Ref B: MAA201060516037 Ref C: 2025-03-12T09:02:21Z'
x-powered-by:
- ASP.NET
status:
@@ -1899,24 +1490,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004","name":"clitestfunction000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-199.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:39:13.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.94","possibleInboundIpAddresses":"40.112.243.94","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-199.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.112.243.94","possibleOutboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.118.240.156,40.118.247.245,168.62.220.91,40.118.242.244,40.118.243.209,138.91.77.15,137.135.0.255,40.118.246.112,40.118.246.249,104.40.32.182,137.135.11.148,137.135.14.172,104.40.38.109,40.112.212.230,40.78.96.41,168.62.197.248,104.42.96.127,40.78.96.194,40.118.163.161,40.118.244.117,104.40.32.64,168.62.223.24,104.40.39.217,138.91.79.109,40.112.243.94","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-199","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T09:02:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98,40.112.243.16","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,104.45.226.98","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,20.253.136.166,40.112.177.65,40.112.177.108,13.64.241.4,40.112.177.69,40.112.183.10,20.245.136.194,20.245.136.62,20.237.169.69,20.237.203.111,20.237.172.166,20.237.168.187,168.61.2.18,168.62.205.43,137.135.31.15,168.62.213.170,138.91.144.254,138.91.189.77,104.45.226.98","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7257'
+ - '7117'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:17 GMT
+ - Wed, 12 Mar 2025 09:02:23 GMT
etag:
- - '"1DAF9BCA2402BD5"'
+ - '"1DB932D760F7EE0"'
expires:
- '-1'
pragma:
@@ -1930,9 +1521,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 9A22C917D70B4E7292A40EF27399DFC6 Ref B: MAA201060514021 Ref C: 2024-08-29T02:39:16Z'
+ - 'Ref A: 0568C9FE9C2B4367B79C8040C6070079 Ref B: MAA201060514009 Ref C: 2025-03-12T09:02:24Z'
x-powered-by:
- ASP.NET
status:
@@ -1952,24 +1543,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.12.5 (Windows-11-10.0.22631-SP0) AZURECLI/2.63.0
+ - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.70.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004?api-version=2023-12-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004","name":"clitestfunction000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-199.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:39:13.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.94","possibleInboundIpAddresses":"40.112.243.94","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-199.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.112.243.94","possibleOutboundIpAddresses":"40.118.160.42,40.118.166.255,40.118.241.105,40.118.245.174,40.118.240.136,40.118.240.142,40.118.240.156,40.118.247.245,168.62.220.91,40.118.242.244,40.118.243.209,138.91.77.15,137.135.0.255,40.118.246.112,40.118.246.249,104.40.32.182,137.135.11.148,137.135.14.172,104.40.38.109,40.112.212.230,40.78.96.41,168.62.197.248,104.42.96.127,40.78.96.194,40.118.163.161,40.118.244.117,104.40.32.64,168.62.223.24,104.40.39.217,138.91.79.109,40.112.243.94","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-199","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000004","state":"Running","hostNames":["clitestfunction000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestfunction000004","repositorySiteName":"clitestfunction000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000004.azurewebsites.net","clitestfunction000004.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":"clitestfunction000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T09:02:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98,40.112.243.16","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,104.45.226.98","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99,20.253.136.166,40.112.177.65,40.112.177.108,13.64.241.4,40.112.177.69,40.112.183.10,20.245.136.194,20.245.136.62,20.237.169.69,20.237.203.111,20.237.172.166,20.237.168.187,168.61.2.18,168.62.205.43,137.135.31.15,168.62.213.170,138.91.144.254,138.91.189.77,104.45.226.98","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestfunction000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7257'
+ - '7117'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:19 GMT
+ - Wed, 12 Mar 2025 09:02:24 GMT
etag:
- - '"1DAF9BCA2402BD5"'
+ - '"1DB932D760F7EE0"'
expires:
- '-1'
pragma:
@@ -1983,9 +1574,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: A7F6CDA077C145A395ED0021AE63ECDB Ref B: MAA201060516033 Ref C: 2024-08-29T02:39:18Z'
+ - 'Ref A: 53B963FCF46E41B882E7024C3B671EE8 Ref B: MAA201060516031 Ref C: 2025-03-12T09:02:25Z'
x-powered-by:
- ASP.NET
status:
@@ -2005,7 +1596,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/slotConfigNames?api-version=2023-01-01
response:
@@ -2020,7 +1611,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:21 GMT
+ - Wed, 12 Mar 2025 09:02:26 GMT
expires:
- '-1'
pragma:
@@ -2034,9 +1625,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 704515EAFB7F4D3283716FBEDF96733B Ref B: MAA201060515027 Ref C: 2024-08-29T02:39:20Z'
+ - 'Ref A: A997A90446F14827A925C972846A8F92 Ref B: MAA201060514027 Ref C: 2025-03-12T09:02:26Z'
x-powered-by:
- ASP.NET
status:
diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function_cross_resource_groups.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function_cross_resource_groups.yaml
index e0e534d51af..eb528fe1789 100644
--- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function_cross_resource_groups.yaml
+++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_function_cross_resource_groups.yaml
@@ -19,36 +19,37 @@ interactions:
ParameterSetName:
- --app --location --kind -g --application-type
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/Microsoft.Insights/components/clitestai000004?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501147a-0000-0200-0000-66cfdf820000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/microsoft.insights/components/clitestai000004\"\
- ,\r\n \"name\": \"clitestai000004\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\": \"d51ad487-bb18-4fad-a8e3-19652e013a6a\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"15a9aa38-d8fa-40a0-bd39-2247d1b50473\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=15a9aa38-d8fa-40a0-bd39-2247d1b50473;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=d51ad487-bb18-4fad-a8e3-19652e013a6a\"\
- ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2024-08-29T02:40:02.5331666+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac009e07-0000-0200-0000-67d14c880000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/microsoft.insights/components/clitestai000004\",\r\n
+ \ \"name\": \"clitestai000004\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\": \"556d2bc1-0366-4412-9221-3bf7c8ee3bf9\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"6a156a4c-ee45-4a5d-9b3c-e49707d6d98d\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=6a156a4c-ee45-4a5d-9b3c-e49707d6d98d;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=556d2bc1-0366-4412-9221-3bf7c8ee3bf9\",\r\n
+ \ \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2025-03-12T08:57:29.580474+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000004_556d2bc1-0366-4412-9221-3bf7c8ee3bf9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000004-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1312'
+ - '1544'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:40:02 GMT
+ - Wed, 12 Mar 2025 08:57:43 GMT
expires:
- '-1'
pragma:
@@ -62,11 +63,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: A021F5E6DE2E47E7864B0E493B015BBC Ref B: MAA201060516037 Ref C: 2024-08-29T02:39:59Z'
+ - 'Ref A: D8F74408BEE841A39FF14FFF4283CC61 Ref B: MAA201060513017 Ref C: 2025-03-12T08:57:26Z'
x-powered-by:
- ASP.NET
status:
@@ -86,36 +87,37 @@ interactions:
ParameterSetName:
- -g --app
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/Microsoft.Insights/components/clitestai000004?api-version=2020-02-02-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501147a-0000-0200-0000-66cfdf820000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/microsoft.insights/components/clitestai000004\"\
- ,\r\n \"name\": \"clitestai000004\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\": \"d51ad487-bb18-4fad-a8e3-19652e013a6a\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"15a9aa38-d8fa-40a0-bd39-2247d1b50473\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=15a9aa38-d8fa-40a0-bd39-2247d1b50473;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=d51ad487-bb18-4fad-a8e3-19652e013a6a\"\
- ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2024-08-29T02:40:02.5331666+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac009e07-0000-0200-0000-67d14c880000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/microsoft.insights/components/clitestai000004\",\r\n
+ \ \"name\": \"clitestai000004\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\": \"556d2bc1-0366-4412-9221-3bf7c8ee3bf9\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"6a156a4c-ee45-4a5d-9b3c-e49707d6d98d\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=6a156a4c-ee45-4a5d-9b3c-e49707d6d98d;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=556d2bc1-0366-4412-9221-3bf7c8ee3bf9\",\r\n
+ \ \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2025-03-12T08:57:29.580474+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000004_556d2bc1-0366-4412-9221-3bf7c8ee3bf9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000004-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1312'
+ - '1544'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:40:04 GMT
+ - Wed, 12 Mar 2025 08:57:45 GMT
expires:
- '-1'
pragma:
@@ -129,9 +131,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: B2CD55AC8A4F41E9BE66B106EE122048 Ref B: MAA201060514031 Ref C: 2024-08-29T02:40:04Z'
+ - 'Ref A: A43F95DE364C4362B5918815379E3A47 Ref B: MAA201060514011 Ref C: 2025-03-12T08:57:45Z'
x-powered-by:
- ASP.NET
status:
@@ -151,21 +153,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/connect_function_cross_rg2000002?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002","name":"connect_function_cross_rg2000002","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2024-08-29T02:39:28Z","module":"application-insights","DateCreated":"2024-08-29T02:39:34Z","Creator":"v-ruih@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002","name":"connect_function_cross_rg2000002","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2025-03-12T08:56:47Z","module":"application-insights","Creator":"liwang3@microsoft.com","DateCreated":"2025-03-12T08:56:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '497'
+ - '498'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:40:04 GMT
+ - Wed, 12 Mar 2025 08:57:48 GMT
expires:
- '-1'
pragma:
@@ -177,9 +179,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: A7AB3DE6A6C74C109275AFE1D3C9AB9B Ref B: MAA201060514047 Ref C: 2024-08-29T02:40:05Z'
+ - 'Ref A: E4B7DDDC0B164F3AB49DDA0118EF7866 Ref B: MAA201060515047 Ref C: 2025-03-12T08:57:48Z'
status:
code: 200
message: OK
@@ -203,24 +205,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006?api-version=2023-01-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","name":"clitestplan000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":32549,"name":"clitestplan000006","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":"connect_function_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"connect_function_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-227_32549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-08-29T02:40:11.9"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","name":"clitestplan000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":11879,"name":"clitestplan000006","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":"connect_function_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"connect_function_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-253_11879","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2025-03-12T08:57:56.6966667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1638'
+ - '1644'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:14 GMT
+ - Wed, 12 Mar 2025 08:58:02 GMT
etag:
- - '"1DAF9BCC57E2F40"'
+ - '"1DB932CD987E18B"'
expires:
- '-1'
pragma:
@@ -234,11 +236,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2998'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 77E23A06F955455697FC79F2C94CEE73 Ref B: MAA201060514047 Ref C: 2024-08-29T02:40:06Z'
+ - 'Ref A: 861CC57C800243CBBA7A53762FE60738 Ref B: MAA201060514047 Ref C: 2025-03-12T08:57:49Z'
x-powered-by:
- ASP.NET
status:
@@ -258,23 +260,23 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","name":"clitestplan000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"West
- US","properties":{"serverFarmId":32549,"name":"clitestplan000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"connect_function_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"connect_function_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-227_32549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-08-29T02:40:11.9"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ US","properties":{"serverFarmId":11879,"name":"clitestplan000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"connect_function_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"connect_function_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-253_11879","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2025-03-12T08:57:56.6966667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1560'
+ - '1566'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:16 GMT
+ - Wed, 12 Mar 2025 08:58:04 GMT
expires:
- '-1'
pragma:
@@ -288,9 +290,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: FED12D7E3EFF47819CB3E18AE1E4D6AE Ref B: MAA201060513029 Ref C: 2024-08-29T02:40:16Z'
+ - 'Ref A: 97DDC7A738BC41FBA5ABF4B91E80BF53 Ref B: MAA201060516031 Ref C: 2025-03-12T08:58:04Z'
x-powered-by:
- ASP.NET
status:
@@ -310,12 +312,14 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/providers/Microsoft.Web/functionAppStacks?api-version=2023-01-01
response:
body:
string: '{"value":[{"id":null,"name":"dotnet","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":".NET","value":"dotnet","preferredOs":"windows","majorVersions":[{"displayText":".NET
+ 9 Isolated","value":"dotnet9isolated","minorVersions":[{"displayText":".NET
+ 9 Isolated","value":"9 (STS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v9.0","isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v9.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":false}],"endOfLifeDate":"2026-05-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|9.0","isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|9.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":false}],"endOfLifeDate":"2026-05-12T00:00:00Z"}}}]},{"displayText":".NET
8 Isolated","value":"dotnet8isolated","minorVersions":[{"displayText":".NET
8 Isolated","value":"8 (LTS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","isHidden":false,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|8.0","isHidden":false,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"}}}]},{"displayText":".NET
7 Isolated","value":"dotnet7isolated","minorVersions":[{"displayText":".NET
@@ -334,8 +338,9 @@ interactions:
Core 2","value":"dotnetcore2","minorVersions":[{"displayText":".NET Core 2.2","value":"2.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"2.2","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.2.207"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true}]},"linuxRuntimeSettings":{"runtimeVersion":"dotnet|2.2","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.2.207"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"dotnet|2.2"},"supportedFunctionsExtensionVersions":["~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true}]}}}]},{"displayText":".NET
Framework 4","value":"dotnetframework4","minorVersions":[{"displayText":".NET
Framework 4.7","value":"4.7","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"4.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~1"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~1","isDeprecated":true,"isDefault":true}]}}}]}]}},{"id":null,"name":"node","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Node.js","value":"node","preferredOs":"windows","majorVersions":[{"displayText":"Node.js
+ 22","value":"22","minorVersions":[{"displayText":"Node.js 22","value":"22","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~22","isPreview":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"22.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|22","isPreview":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"22.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|22"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-04-30T00:00:00Z"}}}]},{"displayText":"Node.js
20","value":"20","minorVersions":[{"displayText":"Node.js 20 LTS","value":"20
- LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-05-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|20"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-05-30T00:00:00Z"}}}]},{"displayText":"Node.js
+ LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|20","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|20"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-04-30T00:00:00Z"}}}]},{"displayText":"Node.js
18","value":"18","minorVersions":[{"displayText":"Node.js 18 LTS","value":"18
LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~18"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2025-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|18"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2025-04-30T00:00:00Z"}}}]},{"displayText":"Node.js
16","value":"16","minorVersions":[{"displayText":"Node.js 16 LTS","value":"16
@@ -350,19 +355,20 @@ interactions:
LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~8"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2019-12-31T00:00:00Z"}}}]},{"displayText":"Node.js
6","value":"6","minorVersions":[{"displayText":"Node.js 6 LTS","value":"6
LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"WEBSITE_NODE_DEFAULT_VERSION":"~6"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~1"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~1","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2019-04-30T00:00:00Z"}}}]}]}},{"id":null,"name":"python","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Python","value":"python","preferredOs":"linux","majorVersions":[{"displayText":"Python
- 3","value":"3","minorVersions":[{"displayText":"Python 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.11","remoteDebuggingSupported":false,"isPreview":false,"isDefault":true,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.11"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3","value":"3","minorVersions":[{"displayText":"Python 3.12","value":"3.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.12","remoteDebuggingSupported":false,"isPreview":true,"isDefault":false,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.12"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.12"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2028-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.11","remoteDebuggingSupported":false,"isPreview":false,"isDefault":true,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.11"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-10-31T00:00:00Z"}}},{"displayText":"Python
3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.10","remoteDebuggingSupported":false,"isPreview":false,"isDefault":true,"isHidden":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.10"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-10-31T00:00:00Z"}}},{"displayText":"Python
3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.9","remoteDebuggingSupported":false,"isPreview":false,"isDefault":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.9"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2025-10-31T00:00:00Z"}}},{"displayText":"Python
- 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2024-10-31T00:00:00Z"}}},{"displayText":"Python
- 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.7"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-06-30T00:00:00Z"}}},{"displayText":"Python
- 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.6"},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2022-09-30T00:00:00Z"}}}]}]}},{"id":null,"name":"java","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Java","value":"java","preferredOs":"windows","majorVersions":[{"displayText":"Java
- 21","value":"21","minorVersions":[{"displayText":"Java 21","value":"21.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"21","isPreview":true,"isHidden":true,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"21","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|21","isPreview":true,"isHidden":false,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|21"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 17","value":"17","minorVersions":[{"displayText":"Java 17","value":"17.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"17","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|17"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2031-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 11","value":"11","minorVersions":[{"displayText":"Java 11","value":"11.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"11","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|11"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"1.8","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2025-03-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2025-03-01T00:00:00Z"}}}]}]}},{"id":null,"name":"powershell","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"PowerShell
+ 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2024-10-07T00:00:00Z"}}},{"displayText":"Python
+ 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.7"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-06-27T00:00:00Z"}}},{"displayText":"Python
+ 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"Python|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"python"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Python|3.6"},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2021-12-23T00:00:00Z"}}}]}]}},{"id":null,"name":"java","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Java","value":"java","preferredOs":"windows","majorVersions":[{"displayText":"Java
+ 21","value":"21","minorVersions":[{"displayText":"Java 21","value":"21.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"21","isPreview":false,"isHidden":true,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"21","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2028-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|21","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|21"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2028-09-01T00:00:00Z"}}}]},{"displayText":"Java
+ 17","value":"17","minorVersions":[{"displayText":"Java 17","value":"17.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"17","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|17","isPreview":false,"isHidden":false,"isAutoUpdate":true,"isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|17"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
+ 11","value":"11","minorVersions":[{"displayText":"Java 11","value":"11.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"11","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2027-09-01T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|11"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
+ 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"javaVersion":"1.8","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-11-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Java|8","isAutoUpdate":true,"isDefault":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"java"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Java|8"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2026-11-30T00:00:00Z"}}}]}]}},{"id":null,"name":"powershell","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"PowerShell
Core","value":"powershell","preferredOs":"windows","majorVersions":[{"displayText":"PowerShell
- 7","value":"7","minorVersions":[{"displayText":"PowerShell 7.4","value":"7.4","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.4","isDefault":false,"isPreview":true,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.4","netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":false,"isPreview":true,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.4"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"}}},{"displayText":"PowerShell
- 7.2","value":"7.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.2","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.2","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.2","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.2"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"}}},{"displayText":"PowerShell
+ 7","value":"7","minorVersions":[{"displayText":"PowerShell 7.4","value":"7.4","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.4","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.4","netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":true,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.4"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2026-11-10T00:00:00Z"}}},{"displayText":"PowerShell
+ 7.2","value":"7.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.2","isDefault":false,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.2","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.2","isDefault":false,"isPreview":false,"isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.2"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-08T00:00:00Z"}}},{"displayText":"PowerShell
7.0","value":"7.0","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~7","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"~7","netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2022-12-03T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7","isAutoUpdate":true,"isPreview":false,"isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2022-12-03T00:00:00Z"}}}]},{"displayText":"PowerShell
Core 6","value":"6","minorVersions":[{"displayText":"PowerShell Core 6.2","value":"6.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~6","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"~6"},"isDeprecated":true,"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2022-09-30T00:00:00Z"}}}]}]}},{"id":null,"name":"custom","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Custom
Handler","value":"custom","preferredOs":"windows","majorVersions":[{"displayText":"Custom
@@ -371,11 +377,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '37321'
+ - '40653'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:18 GMT
+ - Wed, 12 Mar 2025 08:58:05 GMT
expires:
- '-1'
pragma:
@@ -389,7 +395,7 @@ interactions:
x-content-type-options:
- nosniff
x-msedge-ref:
- - 'Ref A: 6102E330771144F7AC944BC534CA4215 Ref B: MAA201060515027 Ref C: 2024-08-29T02:40:17Z'
+ - 'Ref A: 436A148401044F76B7F898750A850123 Ref B: MAA201060515049 Ref C: 2025-03-12T08:58:05Z'
x-powered-by:
- ASP.NET
status:
@@ -409,12 +415,12 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2023-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2024-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-08-29T02:39:35.5735035Z","key2":"2024-08-29T02:39:35.5735035Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-29T02:39:36.9953905Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-08-29T02:39:36.9953905Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-08-29T02:39:35.4329431Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.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/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-03-12T08:56:56.2263200Z","key2":"2025-03-12T08:56:56.2263200Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T08:56:56.2419473Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T08:56:56.2419473Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-03-12T08:56:56.0700716Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -423,7 +429,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:19 GMT
+ - Wed, 12 Mar 2025 08:58:07 GMT
expires:
- '-1'
pragma:
@@ -435,9 +441,55 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 211E11C20FE54D429320286406F7A7D7 Ref B: MAA201060513051 Ref C: 2024-08-29T02:40:19Z'
+ - 'Ref A: DA35DC33774C4660A781892CD57E1062 Ref B: MAA201060513047 Ref C: 2025-03-12T08:58:07Z'
+ 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 --functions-version --runtime
+ User-Agent:
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2024-01-01
+ response:
+ body:
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2025-03-12T08:56:56.2263200Z","key2":"2025-03-12T08:56:56.2263200Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T08:56:56.2419473Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2025-03-12T08:56:56.2419473Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2025-03-12T08:56:56.0700716Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1337'
+ content-type:
+ - application/json
+ date:
+ - Wed, 12 Mar 2025 08:58:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 579631A8FD6448FBBF73861C36C819B3 Ref B: MAA201060513029 Ref C: 2025-03-12T08:58:08Z'
status:
code: 200
message: OK
@@ -457,12 +509,12 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2023-05-01&$expand=kerb
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2024-01-01&$expand=kerb
response:
body:
- string: '{"keys":[{"creationTime":"2024-08-29T02:39:35.5735035Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-08-29T02:39:35.5735035Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ string: '{"keys":[{"creationTime":"2025-03-12T08:56:56.2263200Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2025-03-12T08:56:56.2263200Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
headers:
cache-control:
- no-cache
@@ -471,7 +523,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:19 GMT
+ - Wed, 12 Mar 2025 08:58:08 GMT
expires:
- '-1'
pragma:
@@ -483,9 +535,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-msedge-ref:
- - 'Ref A: B949503637F74FE3B094B73E4ACA5C08 Ref B: MAA201060513051 Ref C: 2024-08-29T02:40:19Z'
+ - 'Ref A: AE63CAC2C70A4A549751D5C0FF1A1F0F Ref B: MAA201060513029 Ref C: 2025-03-12T08:58:09Z'
status:
code: 200
message: OK
@@ -493,7 +545,7 @@ interactions:
body: '{"kind": "functionapp", "location": "West US", "properties": {"serverFarmId":
"clitestplan000006", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig":
{"netFrameworkVersion": "v6.0", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME",
- "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~20"},
+ "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~22"},
{"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~4"}, {"name": "AzureWebJobsStorage",
"value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}],
"use32BitWorkerProcess": true, "alwaysOn": true, "localMySqlEnabled": false,
@@ -514,26 +566,26 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005","name":"clitestfunction000005","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-227.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:40:23.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
+ US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-253.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:13.2866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
all","description":"Allow all access"}],"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.109","possibleInboundIpAddresses":"40.112.243.109","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-227.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,40.112.243.109","possibleOutboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,137.135.51.231,137.135.52.22,137.135.52.42,137.135.52.79,137.135.52.122,137.135.52.140,137.135.52.161,137.135.53.86,104.40.12.208,20.253.156.28,20.245.131.41,137.135.48.93,137.135.54.109,137.135.54.221,137.135.48.164,157.56.164.196,20.245.131.32,20.245.135.25,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,20.253.156.176,20.253.153.249,20.253.155.69,20.253.157.244,137.135.49.217,104.40.4.255,40.112.243.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-227","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.122","possibleInboundIpAddresses":"40.112.243.122","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,40.112.243.122","possibleOutboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,20.253.136.43,168.62.16.131,168.62.16.132,168.62.16.71,168.62.16.61,168.62.21.16,168.62.21.34,168.62.21.52,168.62.21.121,168.62.21.165,168.62.21.184,168.62.21.197,168.62.21.249,168.62.23.142,168.62.23.205,168.62.20.49,104.45.215.183,168.62.200.100,168.62.200.119,104.45.211.32,104.45.210.48,168.62.16.137,168.62.22.78,168.62.22.101,168.62.23.140,40.112.243.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7938'
+ - '8009'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:43 GMT
+ - Wed, 12 Mar 2025 08:58:36 GMT
etag:
- - '"1DAF9BCCCB3FD4B"'
+ - '"1DB932CE362AAE0"'
expires:
- '-1'
pragma:
@@ -549,7 +601,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '499'
x-msedge-ref:
- - 'Ref A: 74FFB6BB382E43E68EBA955EC4939722 Ref B: MAA201060513029 Ref C: 2024-08-29T02:40:20Z'
+ - 'Ref A: FA91842AE88D4893BADC8C9109EE0783 Ref B: MAA201060516031 Ref C: 2025-03-12T08:58:09Z'
x-powered-by:
- ASP.NET
status:
@@ -569,591 +621,143 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2022-12-01
response:
body:
- string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"\
- ,\"name\":\"eastus\",\"type\":\"Region\",\"displayName\":\"East US\",\"regionalDisplayName\"\
- :\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\"\
- :\"Recommended\",\"geography\":\"United States\",\"geographyGroup\":\"US\"\
- ,\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\"\
- :\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus-az1\"},{\"\
- logicalZone\":\"3\",\"physicalZone\":\"eastus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"\
- ,\"name\":\"southcentralus\",\"type\":\"Region\",\"displayName\":\"South Central\
- \ US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"United States\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\"\
- :\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"\
- northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"southcentralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southcentralus-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"southcentralus-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"\
- ,\"name\":\"westus2\",\"type\":\"Region\",\"displayName\":\"West US 2\",\"\
- regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\"\
- ,\"regionCategory\":\"Recommended\",\"geography\":\"United States\",\"geographyGroup\"\
- :\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\"\
- :\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"westus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus2-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"westus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\"\
- ,\"name\":\"westus3\",\"type\":\"Region\",\"displayName\":\"West US 3\",\"\
- regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\"\
- ,\"regionCategory\":\"Recommended\",\"geography\":\"United States\",\"geographyGroup\"\
- :\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\"\
- :\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"westus3-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus3-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"westus3-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"\
- ,\"name\":\"australiaeast\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Australia\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"151.2094\"\
- ,\"latitude\":\"-33.86\",\"physicalLocation\":\"New South Wales\",\"pairedRegion\"\
- :[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"australiaeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"australiaeast-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"australiaeast-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"\
- ,\"name\":\"southeastasia\",\"type\":\"Region\",\"displayName\":\"Southeast\
- \ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Asia Pacific\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"103.833\"\
- ,\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\"\
- :[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"southeastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southeastasia-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"southeastasia-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"\
- ,\"name\":\"northeurope\",\"type\":\"Region\",\"displayName\":\"North Europe\"\
- ,\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\"\
- ,\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"northeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"northeurope-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"northeurope-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\"\
- ,\"name\":\"swedencentral\",\"type\":\"Region\",\"displayName\":\"Sweden Central\"\
- ,\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Sweden\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"\
- 60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"\
- swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"swedencentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"swedencentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"swedencentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"\
- ,\"name\":\"uksouth\",\"type\":\"Region\",\"displayName\":\"UK South\",\"\
- regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"\
- Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United Kingdom\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\"\
- ,\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"uksouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uksouth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"uksouth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"\
- ,\"name\":\"westeurope\",\"type\":\"Region\",\"displayName\":\"West Europe\"\
- ,\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\"\
- ,\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"westeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westeurope-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"westeurope-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"\
- ,\"name\":\"centralus\",\"type\":\"Region\",\"displayName\":\"Central US\"\
- ,\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United States\"\
- ,\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\"\
- ,\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"centralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralus-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"centralus-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"\
- ,\"name\":\"southafricanorth\",\"type\":\"Region\",\"displayName\":\"South\
- \ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\"\
- ,\"geography\":\"South Africa\",\"geographyGroup\":\"Africa\",\"longitude\"\
- :\"28.21837\",\"latitude\":\"-25.73134\",\"physicalLocation\":\"Johannesburg\"\
- ,\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"southafricanorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southafricanorth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"southafricanorth-az2\"}]},{\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"\
- ,\"name\":\"centralindia\",\"type\":\"Region\",\"displayName\":\"Central India\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"India\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"73.9197\",\"\
- latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"\
- name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"centralindia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralindia-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"centralindia-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"\
- ,\"name\":\"eastasia\",\"type\":\"Region\",\"displayName\":\"East Asia\",\"\
- regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Asia Pacific\"\
- ,\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"114.188\",\"latitude\"\
- :\"22.267\",\"physicalLocation\":\"Hong Kong\",\"pairedRegion\":[{\"name\"\
- :\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastasia-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"eastasia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"\
- ,\"name\":\"japaneast\",\"type\":\"Region\",\"displayName\":\"Japan East\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Japan\",\"\
- geographyGroup\":\"Asia Pacific\",\"longitude\":\"139.77\",\"latitude\":\"\
- 35.68\",\"physicalLocation\":\"Tokyo, Saitama\",\"pairedRegion\":[{\"name\"\
- :\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"japaneast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"japaneast-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"japaneast-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"\
- ,\"name\":\"koreacentral\",\"type\":\"Region\",\"displayName\":\"Korea Central\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Korea\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"126.978\",\"\
- latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"\
- name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"koreacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"koreacentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"koreacentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"\
- ,\"name\":\"canadacentral\",\"type\":\"Region\",\"displayName\":\"Canada Central\"\
- ,\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Canada\"\
- ,\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\"\
- ,\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"canadacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"canadacentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"canadacentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"\
- ,\"name\":\"francecentral\",\"type\":\"Region\",\"displayName\":\"France Central\"\
- ,\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"France\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"2.373\",\"latitude\":\"46.3772\"\
- ,\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"francecentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"francecentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"francecentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"\
- ,\"name\":\"germanywestcentral\",\"type\":\"Region\",\"displayName\":\"Germany\
- \ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\"\
- ,\"geography\":\"Germany\",\"geographyGroup\":\"Europe\",\"longitude\":\"\
- 8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"\
- pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"germanywestcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"germanywestcentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"germanywestcentral-az2\"}]},{\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italynorth\"\
- ,\"name\":\"italynorth\",\"type\":\"Region\",\"displayName\":\"Italy North\"\
- ,\"regionalDisplayName\":\"(Europe) Italy North\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Italy\",\"\
- geographyGroup\":\"Europe\",\"longitude\":\"9.18109\",\"latitude\":\"45.46888\"\
- ,\"physicalLocation\":\"Milan\",\"pairedRegion\":[]},\"availabilityZoneMappings\"\
- :[{\"logicalZone\":\"1\",\"physicalZone\":\"italynorth-az3\"},{\"logicalZone\"\
- :\"2\",\"physicalZone\":\"italynorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\"\
- :\"italynorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"\
- ,\"name\":\"norwayeast\",\"type\":\"Region\",\"displayName\":\"Norway East\"\
- ,\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Norway\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"\
- 59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"\
- norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"norwayeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"norwayeast-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"norwayeast-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/polandcentral\"\
- ,\"name\":\"polandcentral\",\"type\":\"Region\",\"displayName\":\"Poland Central\"\
- ,\"regionalDisplayName\":\"(Europe) Poland Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Poland\"\
- ,\"geographyGroup\":\"Europe\",\"longitude\":\"21.01666\",\"latitude\":\"\
- 52.23334\",\"physicalLocation\":\"Warsaw\",\"pairedRegion\":[]},\"availabilityZoneMappings\"\
- :[{\"logicalZone\":\"1\",\"physicalZone\":\"polandcentral-az3\"},{\"logicalZone\"\
- :\"2\",\"physicalZone\":\"polandcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\"\
- :\"polandcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/spaincentral\"\
- ,\"name\":\"spaincentral\",\"type\":\"Region\",\"displayName\":\"Spain Central\"\
- ,\"regionalDisplayName\":\"(Europe) Spain Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Spain\",\"\
- geographyGroup\":\"Europe\",\"longitude\":\"3.4209\",\"latitude\":\"40.4259\"\
- ,\"physicalLocation\":\"Madrid\",\"pairedRegion\":[]},\"availabilityZoneMappings\"\
- :[{\"logicalZone\":\"1\",\"physicalZone\":\"spaincentral-az3\"},{\"logicalZone\"\
- :\"2\",\"physicalZone\":\"spaincentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\"\
- :\"spaincentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"\
- ,\"name\":\"switzerlandnorth\",\"type\":\"Region\",\"displayName\":\"Switzerland\
- \ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\"\
- ,\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\"\
- :[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"switzerlandnorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"switzerlandnorth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"switzerlandnorth-az2\"}]},{\"\
- id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/mexicocentral\"\
- ,\"name\":\"mexicocentral\",\"type\":\"Region\",\"displayName\":\"Mexico Central\"\
- ,\"regionalDisplayName\":\"(Mexico) Mexico Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Mexico\"\
- ,\"geographyGroup\":\"Mexico\",\"longitude\":\"-100.389888\",\"latitude\"\
- :\"20.588818\",\"physicalLocation\":\"Quer\xE9taro State\",\"pairedRegion\"\
- :[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"mexicocentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"mexicocentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"mexicocentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"\
- ,\"name\":\"uaenorth\",\"type\":\"Region\",\"displayName\":\"UAE North\",\"\
- regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"UAE\",\"\
- geographyGroup\":\"Middle East\",\"longitude\":\"55.316666\",\"latitude\"\
- :\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\"\
- :\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"uaenorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uaenorth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"uaenorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"\
- ,\"name\":\"brazilsouth\",\"type\":\"Region\",\"displayName\":\"Brazil South\"\
- ,\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Brazil\",\"geographyGroup\":\"South America\",\"longitude\":\"-46.633\"\
- ,\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao Paulo State\",\"pairedRegion\"\
- :[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"brazilsouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"brazilsouth-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"brazilsouth-az2\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/israelcentral\"\
- ,\"name\":\"israelcentral\",\"type\":\"Region\",\"displayName\":\"Israel Central\"\
- ,\"regionalDisplayName\":\"(Middle East) Israel Central\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Israel\",\"geographyGroup\":\"Middle East\",\"longitude\":\"33.4506633\"\
- ,\"latitude\":\"31.2655698\",\"physicalLocation\":\"Israel\",\"pairedRegion\"\
- :[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"israelcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"israelcentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"israelcentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\"\
- ,\"name\":\"qatarcentral\",\"type\":\"Region\",\"displayName\":\"Qatar Central\"\
- ,\"regionalDisplayName\":\"(Middle East) Qatar Central\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\"\
- :\"Qatar\",\"geographyGroup\":\"Middle East\",\"longitude\":\"51.439327\"\
- ,\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\"\
- :[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"qatarcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"qatarcentral-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"qatarcentral-az2\"}]},{\"id\"\
- :\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\"\
- ,\"name\":\"centralusstage\",\"type\":\"Region\",\"displayName\":\"Central\
- \ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"\
- usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\"\
- ,\"name\":\"eastusstage\",\"type\":\"Region\",\"displayName\":\"East US (Stage)\"\
- ,\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\"\
- :\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\"\
- :\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\"\
- ,\"name\":\"eastus2stage\",\"type\":\"Region\",\"displayName\":\"East US 2\
- \ (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"\
- usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\"\
- ,\"name\":\"northcentralusstage\",\"type\":\"Region\",\"displayName\":\"North\
- \ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\"\
- ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"\
- geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\"\
- ,\"name\":\"southcentralusstage\",\"type\":\"Region\",\"displayName\":\"South\
- \ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\"\
- ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"\
- geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\"\
- ,\"name\":\"westusstage\",\"type\":\"Region\",\"displayName\":\"West US (Stage)\"\
- ,\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\"\
- :\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\"\
- :\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\"\
- ,\"name\":\"westus2stage\",\"type\":\"Region\",\"displayName\":\"West US 2\
- \ (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"\
- usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\"\
- ,\"name\":\"asia\",\"type\":\"Region\",\"displayName\":\"Asia\",\"regionalDisplayName\"\
- :\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\
- }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\"\
- ,\"name\":\"asiapacific\",\"type\":\"Region\",\"displayName\":\"Asia Pacific\"\
- ,\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"\
- Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\"\
- ,\"name\":\"australia\",\"type\":\"Region\",\"displayName\":\"Australia\"\
- ,\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\"\
- ,\"name\":\"brazil\",\"type\":\"Region\",\"displayName\":\"Brazil\",\"regionalDisplayName\"\
- :\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\"\
- ,\"name\":\"canada\",\"type\":\"Region\",\"displayName\":\"Canada\",\"regionalDisplayName\"\
- :\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\"\
- ,\"name\":\"europe\",\"type\":\"Region\",\"displayName\":\"Europe\",\"regionalDisplayName\"\
- :\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\"\
- ,\"name\":\"france\",\"type\":\"Region\",\"displayName\":\"France\",\"regionalDisplayName\"\
- :\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\"\
- ,\"name\":\"germany\",\"type\":\"Region\",\"displayName\":\"Germany\",\"regionalDisplayName\"\
- :\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\"\
- ,\"name\":\"global\",\"type\":\"Region\",\"displayName\":\"Global\",\"regionalDisplayName\"\
- :\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\"\
- ,\"name\":\"india\",\"type\":\"Region\",\"displayName\":\"India\",\"regionalDisplayName\"\
- :\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israel\"\
- ,\"name\":\"israel\",\"type\":\"Region\",\"displayName\":\"Israel\",\"regionalDisplayName\"\
- :\"Israel\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italy\"\
- ,\"name\":\"italy\",\"type\":\"Region\",\"displayName\":\"Italy\",\"regionalDisplayName\"\
- :\"Italy\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\"\
- ,\"name\":\"japan\",\"type\":\"Region\",\"displayName\":\"Japan\",\"regionalDisplayName\"\
- :\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\"\
- ,\"name\":\"korea\",\"type\":\"Region\",\"displayName\":\"Korea\",\"regionalDisplayName\"\
- :\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealand\"\
- ,\"name\":\"newzealand\",\"type\":\"Region\",\"displayName\":\"New Zealand\"\
- ,\"regionalDisplayName\":\"New Zealand\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\"\
- ,\"name\":\"norway\",\"type\":\"Region\",\"displayName\":\"Norway\",\"regionalDisplayName\"\
- :\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/poland\"\
- ,\"name\":\"poland\",\"type\":\"Region\",\"displayName\":\"Poland\",\"regionalDisplayName\"\
- :\"Poland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatar\"\
- ,\"name\":\"qatar\",\"type\":\"Region\",\"displayName\":\"Qatar\",\"regionalDisplayName\"\
- :\"Qatar\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\"\
- ,\"name\":\"singapore\",\"type\":\"Region\",\"displayName\":\"Singapore\"\
- ,\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\"\
- ,\"name\":\"southafrica\",\"type\":\"Region\",\"displayName\":\"South Africa\"\
- ,\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"\
- Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/sweden\"\
- ,\"name\":\"sweden\",\"type\":\"Region\",\"displayName\":\"Sweden\",\"regionalDisplayName\"\
- :\"Sweden\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"\
- Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\"\
- ,\"name\":\"switzerland\",\"type\":\"Region\",\"displayName\":\"Switzerland\"\
- ,\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\"\
- ,\"name\":\"uae\",\"type\":\"Region\",\"displayName\":\"United Arab Emirates\"\
- ,\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\"\
- :\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\"\
- ,\"name\":\"uk\",\"type\":\"Region\",\"displayName\":\"United Kingdom\",\"\
- regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\"\
- ,\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\"\
- ,\"name\":\"unitedstates\",\"type\":\"Region\",\"displayName\":\"United States\"\
- ,\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"\
- Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\"\
- ,\"name\":\"unitedstateseuap\",\"type\":\"Region\",\"displayName\":\"United\
- \ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\"\
- :{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\"\
- ,\"name\":\"eastasiastage\",\"type\":\"Region\",\"displayName\":\"East Asia\
- \ (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"\
- metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"asia\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\"\
- ,\"name\":\"southeastasiastage\",\"type\":\"Region\",\"displayName\":\"Southeast\
- \ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\"\
- ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"\
- geography\":\"asia\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilus\"\
- ,\"name\":\"brazilus\",\"type\":\"Region\",\"displayName\":\"Brazil US\",\"\
- regionalDisplayName\":\"(South America) Brazil US\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Brazil\",\"geographyGroup\"\
- :\"South America\",\"longitude\":\"0\",\"latitude\":\"0\",\"physicalLocation\"\
- :\"\",\"pairedRegion\":[{\"name\":\"brazilsoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"\
- ,\"name\":\"eastus2\",\"type\":\"Region\",\"displayName\":\"East US 2\",\"\
- regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\"\
- ,\"regionCategory\":\"Other\",\"geography\":\"United States\",\"geographyGroup\"\
- :\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\"\
- :\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2-az1\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"\
- ,\"name\":\"eastusstg\",\"type\":\"Region\",\"displayName\":\"East US STG\"\
- ,\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Stage (US)\",\"\
- geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\"\
- ,\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"\
- ,\"name\":\"northcentralus\",\"type\":\"Region\",\"displayName\":\"North Central\
- \ US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United\
- \ States\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\"\
- :\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\"\
- :\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"\
- ,\"name\":\"westus\",\"type\":\"Region\",\"displayName\":\"West US\",\"regionalDisplayName\"\
- :\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\"\
- :\"Other\",\"geography\":\"United States\",\"geographyGroup\":\"US\",\"longitude\"\
- :\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\"\
- ,\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"\
- ,\"name\":\"japanwest\",\"type\":\"Region\",\"displayName\":\"Japan West\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Japan\",\"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/jioindiawest\"\
- ,\"name\":\"jioindiawest\",\"type\":\"Region\",\"displayName\":\"Jio India\
- \ West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"\
- India\",\"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/centraluseuap\"\
- ,\"name\":\"centraluseuap\",\"type\":\"Region\",\"displayName\":\"Central\
- \ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"\
- Canary (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\"\
- :\"41.5908\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"eastus2euap\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"centraluseuap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centraluseuap-az2\"\
- }]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"\
- ,\"name\":\"eastus2euap\",\"type\":\"Region\",\"displayName\":\"East US 2\
- \ EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"\
- regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canary\
- \ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\"\
- :\"36.6681\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"centraluseuap\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"\
- }]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\"\
- :\"eastus2euap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2euap-az2\"\
- },{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2euap-az3\"}]},{\"id\":\"\
- /subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"\
- ,\"name\":\"southcentralusstg\",\"type\":\"Region\",\"displayName\":\"South\
- \ Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"Stage (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\"\
- :\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"\
- eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"\
- ,\"name\":\"westcentralus\",\"type\":\"Region\",\"displayName\":\"West Central\
- \ US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United States\"\
- ,\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.89\"\
- ,\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"\
- ,\"name\":\"southafricawest\",\"type\":\"Region\",\"displayName\":\"South\
- \ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"South Africa\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\"\
- ,\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape Town\",\"pairedRegion\"\
- :[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"\
- ,\"name\":\"australiacentral\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"Australia\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"149.1244\"\
- ,\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\"\
- :[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"\
- ,\"name\":\"australiacentral2\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"\
- geography\":\"Australia\",\"geographyGroup\":\"Asia Pacific\",\"longitude\"\
- :\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\"\
- ,\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"\
- ,\"name\":\"australiasoutheast\",\"type\":\"Region\",\"displayName\":\"Australia\
- \ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"\
- geography\":\"Australia\",\"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/jioindiacentral\"\
- ,\"name\":\"jioindiacentral\",\"type\":\"Region\",\"displayName\":\"Jio India\
- \ Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"\
- metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\"\
- :\"India\",\"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\",\"type\":\"Region\",\"displayName\":\"Korea South\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Korea\",\"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\",\"type\":\"Region\",\"displayName\":\"South India\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\"\
- :\"Asia Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\"\
- :\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\"\
- ,\"name\":\"westindia\",\"type\":\"Region\",\"displayName\":\"West India\"\
- ,\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\"\
- :\"Asia Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\"\
- :\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"\
- ,\"name\":\"canadaeast\",\"type\":\"Region\",\"displayName\":\"Canada East\"\
- ,\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canada\",\"geographyGroup\"\
- :\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\"\
- :\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"\
- ,\"name\":\"francesouth\",\"type\":\"Region\",\"displayName\":\"France South\"\
- ,\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"France\",\"geographyGroup\"\
- :\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\"\
- :\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"\
- ,\"name\":\"germanynorth\",\"type\":\"Region\",\"displayName\":\"Germany North\"\
- ,\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Germany\",\"geographyGroup\"\
- :\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\"\
- :\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"\
- ,\"name\":\"norwaywest\",\"type\":\"Region\",\"displayName\":\"Norway West\"\
- ,\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Norway\",\"geographyGroup\"\
- :\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\"\
- :\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"\
- ,\"name\":\"switzerlandwest\",\"type\":\"Region\",\"displayName\":\"Switzerland\
- \ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\"\
- :{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"\
- Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"\
- latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\"\
- :[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"\
- ,\"name\":\"ukwest\",\"type\":\"Region\",\"displayName\":\"UK West\",\"regionalDisplayName\"\
- :\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\"\
- :\"Other\",\"geography\":\"United Kingdom\",\"geographyGroup\":\"Europe\"\
- ,\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"\
- Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"\
- ,\"name\":\"uaecentral\",\"type\":\"Region\",\"displayName\":\"UAE Central\"\
- ,\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\"\
- :\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"UAE\",\"geographyGroup\"\
- :\"Middle East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"\
- physicalLocation\":\"Abu Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\"\
- ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"\
- }]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\"\
- ,\"name\":\"brazilsoutheast\",\"type\":\"Region\",\"displayName\":\"Brazil\
- \ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\"\
- ,\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"\
- geography\":\"Brazil\",\"geographyGroup\":\"South America\",\"longitude\"\
- :\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\"\
- :[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"\
- }]}}]}"
+ string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"type\":\"Region\",\"displayName\":\"East
+ US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"type\":\"Region\",\"displayName\":\"South
+ Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"southcentralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southcentralus-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"southcentralus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"type\":\"Region\",\"displayName\":\"West
+ US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"westus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus2-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"westus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"type\":\"Region\",\"displayName\":\"West
+ US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"westus3-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westus3-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"westus3-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"type\":\"Region\",\"displayName\":\"Australia
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Australia\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New
+ South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"australiaeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"australiaeast-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"australiaeast-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"type\":\"Region\",\"displayName\":\"Southeast
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Asia
+ Pacific\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"southeastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southeastasia-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"southeastasia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"type\":\"Region\",\"displayName\":\"North
+ Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"northeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"northeurope-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"northeurope-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"type\":\"Region\",\"displayName\":\"Sweden
+ Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Sweden\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"swedencentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"swedencentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"swedencentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"type\":\"Region\",\"displayName\":\"UK
+ South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ Kingdom\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"uksouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uksouth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"uksouth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"type\":\"Region\",\"displayName\":\"West
+ Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Europe\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"westeurope-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"westeurope-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"westeurope-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"type\":\"Region\",\"displayName\":\"Central
+ US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"centralus-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralus-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"centralus-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"type\":\"Region\",\"displayName\":\"South
+ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"South
+ Africa\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.21837\",\"latitude\":\"-25.73134\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"southafricanorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"southafricanorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"southafricanorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"type\":\"Region\",\"displayName\":\"Central
+ India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"India\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"centralindia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centralindia-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"centralindia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"type\":\"Region\",\"displayName\":\"East
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Asia
+ Pacific\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong
+ Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastasia-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastasia-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastasia-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"type\":\"Region\",\"displayName\":\"Japan
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Japan\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo,
+ Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"japaneast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"japaneast-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"japaneast-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"type\":\"Region\",\"displayName\":\"Korea
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Korea\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"126.978\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"koreacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"koreacentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"koreacentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealandnorth\",\"name\":\"newzealandnorth\",\"type\":\"Region\",\"displayName\":\"New
+ Zealand North\",\"regionalDisplayName\":\"(Asia Pacific) New Zealand North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"New
+ Zealand\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"174.76349\",\"latitude\":\"-36.84853\",\"physicalLocation\":\"Auckland\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"newzealandnorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"newzealandnorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"newzealandnorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"type\":\"Region\",\"displayName\":\"Canada
+ Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Canada\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"canadacentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"canadacentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"canadacentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"type\":\"Region\",\"displayName\":\"France
+ Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"France\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.373\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"francecentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"francecentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"francecentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"type\":\"Region\",\"displayName\":\"Germany
+ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Germany\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"germanywestcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"germanywestcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"germanywestcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italynorth\",\"name\":\"italynorth\",\"type\":\"Region\",\"displayName\":\"Italy
+ North\",\"regionalDisplayName\":\"(Europe) Italy North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Italy\",\"geographyGroup\":\"Europe\",\"longitude\":\"9.18109\",\"latitude\":\"45.46888\",\"physicalLocation\":\"Milan\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"italynorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"italynorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"italynorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"type\":\"Region\",\"displayName\":\"Norway
+ East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Norway\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"norwayeast-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"norwayeast-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"norwayeast-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/polandcentral\",\"name\":\"polandcentral\",\"type\":\"Region\",\"displayName\":\"Poland
+ Central\",\"regionalDisplayName\":\"(Europe) Poland Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Poland\",\"geographyGroup\":\"Europe\",\"longitude\":\"21.01666\",\"latitude\":\"52.23334\",\"physicalLocation\":\"Warsaw\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"polandcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"polandcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"polandcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/spaincentral\",\"name\":\"spaincentral\",\"type\":\"Region\",\"displayName\":\"Spain
+ Central\",\"regionalDisplayName\":\"(Europe) Spain Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Spain\",\"geographyGroup\":\"Europe\",\"longitude\":\"3.4209\",\"latitude\":\"40.4259\",\"physicalLocation\":\"Madrid\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"spaincentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"spaincentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"spaincentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"type\":\"Region\",\"displayName\":\"Switzerland
+ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"switzerlandnorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"switzerlandnorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"switzerlandnorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/mexicocentral\",\"name\":\"mexicocentral\",\"type\":\"Region\",\"displayName\":\"Mexico
+ Central\",\"regionalDisplayName\":\"(Mexico) Mexico Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Mexico\",\"geographyGroup\":\"Mexico\",\"longitude\":\"-100.389888\",\"latitude\":\"20.588818\",\"physicalLocation\":\"Quer\xE9taro
+ State\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"mexicocentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"mexicocentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"mexicocentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"type\":\"Region\",\"displayName\":\"UAE
+ North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"UAE\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"uaenorth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"uaenorth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"uaenorth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"type\":\"Region\",\"displayName\":\"Brazil
+ South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Brazil\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao
+ Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"brazilsouth-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"brazilsouth-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"brazilsouth-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israelcentral\",\"name\":\"israelcentral\",\"type\":\"Region\",\"displayName\":\"Israel
+ Central\",\"regionalDisplayName\":\"(Middle East) Israel Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Israel\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"33.4506633\",\"latitude\":\"31.2655698\",\"physicalLocation\":\"Israel\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"israelcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"israelcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"israelcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"type\":\"Region\",\"displayName\":\"Qatar
+ Central\",\"regionalDisplayName\":\"(Middle East) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geography\":\"Qatar\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"qatarcentral-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"qatarcentral-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"qatarcentral-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"type\":\"Region\",\"displayName\":\"Central
+ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"type\":\"Region\",\"displayName\":\"East
+ US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"type\":\"Region\",\"displayName\":\"East
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"type\":\"Region\",\"displayName\":\"North
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"type\":\"Region\",\"displayName\":\"South
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"type\":\"Region\",\"displayName\":\"West
+ US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"type\":\"Region\",\"displayName\":\"West
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"usa\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"type\":\"Region\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"type\":\"Region\",\"displayName\":\"Asia
+ Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"type\":\"Region\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"type\":\"Region\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"type\":\"Region\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"type\":\"Region\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"type\":\"Region\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"type\":\"Region\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"type\":\"Region\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"type\":\"Region\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israel\",\"name\":\"israel\",\"type\":\"Region\",\"displayName\":\"Israel\",\"regionalDisplayName\":\"Israel\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italy\",\"name\":\"italy\",\"type\":\"Region\",\"displayName\":\"Italy\",\"regionalDisplayName\":\"Italy\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"type\":\"Region\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"type\":\"Region\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealand\",\"name\":\"newzealand\",\"type\":\"Region\",\"displayName\":\"New
+ Zealand\",\"regionalDisplayName\":\"New Zealand\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"type\":\"Region\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/poland\",\"name\":\"poland\",\"type\":\"Region\",\"displayName\":\"Poland\",\"regionalDisplayName\":\"Poland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatar\",\"name\":\"qatar\",\"type\":\"Region\",\"displayName\":\"Qatar\",\"regionalDisplayName\":\"Qatar\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"type\":\"Region\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"type\":\"Region\",\"displayName\":\"South
+ Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/sweden\",\"name\":\"sweden\",\"type\":\"Region\",\"displayName\":\"Sweden\",\"regionalDisplayName\":\"Sweden\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"type\":\"Region\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"type\":\"Region\",\"displayName\":\"United
+ Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"type\":\"Region\",\"displayName\":\"United
+ Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"type\":\"Region\",\"displayName\":\"United
+ States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"type\":\"Region\",\"displayName\":\"United
+ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"type\":\"Region\",\"displayName\":\"East
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"asia\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"type\":\"Region\",\"displayName\":\"Southeast
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geography\":\"asia\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilus\",\"name\":\"brazilus\",\"type\":\"Region\",\"displayName\":\"Brazil
+ US\",\"regionalDisplayName\":\"(South America) Brazil US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Brazil\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"0\",\"latitude\":\"0\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"brazilsoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"type\":\"Region\",\"displayName\":\"East
+ US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastus2-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"type\":\"Region\",\"displayName\":\"East
+ US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Stage
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"type\":\"Region\",\"displayName\":\"North
+ Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"type\":\"Region\",\"displayName\":\"West
+ US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"type\":\"Region\",\"displayName\":\"Japan
+ West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Japan\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"japanwest-az3\"},{\"logicalZone\":\"2\",\"physicalZone\":\"japanwest-az1\"},{\"logicalZone\":\"3\",\"physicalZone\":\"japanwest-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"type\":\"Region\",\"displayName\":\"Jio
+ India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"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/centraluseuap\",\"name\":\"centraluseuap\",\"type\":\"Region\",\"displayName\":\"Central
+ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canary
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"centraluseuap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"centraluseuap-az2\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"type\":\"Region\",\"displayName\":\"East
+ US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canary
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]},\"availabilityZoneMappings\":[{\"logicalZone\":\"1\",\"physicalZone\":\"eastus2euap-az1\"},{\"logicalZone\":\"2\",\"physicalZone\":\"eastus2euap-az2\"},{\"logicalZone\":\"3\",\"physicalZone\":\"eastus2euap-az3\"}]},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"type\":\"Region\",\"displayName\":\"South
+ Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Stage
+ (US)\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"type\":\"Region\",\"displayName\":\"West
+ Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ States\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.89\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"type\":\"Region\",\"displayName\":\"South
+ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"South
+ Africa\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape
+ Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"type\":\"Region\",\"displayName\":\"Australia
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Australia\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"type\":\"Region\",\"displayName\":\"Australia
+ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Australia\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"type\":\"Region\",\"displayName\":\"Australia
+ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Australia\",\"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/jioindiacentral\",\"name\":\"jioindiacentral\",\"type\":\"Region\",\"displayName\":\"Jio
+ India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"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\",\"type\":\"Region\",\"displayName\":\"Korea
+ South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Korea\",\"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\",\"type\":\"Region\",\"displayName\":\"South
+ India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"type\":\"Region\",\"displayName\":\"West
+ India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"India\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"type\":\"Region\",\"displayName\":\"Canada
+ East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Canada\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"type\":\"Region\",\"displayName\":\"France
+ South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"France\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"type\":\"Region\",\"displayName\":\"Germany
+ North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Germany\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"type\":\"Region\",\"displayName\":\"Norway
+ West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Norway\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"type\":\"Region\",\"displayName\":\"Switzerland
+ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Switzerland\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"type\":\"Region\",\"displayName\":\"UK
+ West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"United
+ Kingdom\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"type\":\"Region\",\"displayName\":\"UAE
+ Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"UAE\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu
+ Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"type\":\"Region\",\"displayName\":\"Brazil
+ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geography\":\"Brazil\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}"
headers:
cache-control:
- no-cache
content-length:
- - '42817'
+ - '43639'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:40:46 GMT
+ - Wed, 12 Mar 2025 08:58:39 GMT
expires:
- '-1'
pragma:
@@ -1165,9 +769,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: C4C78F33D4C64DD8BE72F190C4B0B8B7 Ref B: MAA201060515039 Ref C: 2024-08-29T02:40:45Z'
+ - 'Ref A: 4E67983C540545B091723F6240646A54 Ref B: MAA201060515035 Ref C: 2025-03-12T08:58:37Z'
status:
code: 200
message: OK
@@ -1185,22 +789,21 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights/workspaces?api-version=2021-12-01-preview
response:
body:
- string: '{"value":[{"properties":{"customerId":"a675adfe-58d0-4246-bddc-502864ec8ae4","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-10-12T08:26:27.4919985Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-10-12T13:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-10-12T08:26:27.4919985Z","modifiedDate":"2023-10-12T08:26:28.5598485Z"},"location":"East
- US","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nori-insights/providers/Microsoft.OperationalInsights/workspaces/nori-ws","name":"nori-ws","type":"Microsoft.OperationalInsights/workspaces","etag":"\"2a0086be-0000-0100-0000-6527adb40000\""},{"properties":{"customerId":"87b376a0-0b8a-4139-bcbf-05d3ebcdde71","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-10-31T07:46:26.8254538Z"},"retentionInDays":365,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-10-31T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-10-31T07:46:26.8254538Z","modifiedDate":"2023-10-31T07:49:53.4376323Z"},"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azClientToolsAssistant-rg/providers/Microsoft.OperationalInsights/workspaces/bot2c7ab4-workspace","name":"bot2c7ab4-workspace","type":"Microsoft.OperationalInsights/workspaces","etag":"\"cb005698-0000-0100-0000-6540b1a10000\""},{"properties":{"customerId":"4ff6dd0e-fae1-4371-8f74-341b431ebdbb","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-08-29T02:40:01.741494Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-08-29T22:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-08-29T02:40:01.741494Z","modifiedDate":"2024-08-29T02:40:04.1949664Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwercwji7l7t3v5323qmid3meli5rm2jwyytlvkrzkjcerbhavd6n23xcyq35h46rn/providers/Microsoft.OperationalInsights/workspaces/clitestmgrqjcd5zmckl","name":"clitestmgrqjcd5zmckl","type":"Microsoft.OperationalInsights/workspaces","etag":"\"120226fe-0000-0700-0000-66cfdf840000\""}]}'
+ string: '{"value":[{"properties":{"customerId":"9ae01b0a-40f4-4137-bd48-c9e4988e1965","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T05:01:41.2726171Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true,"disableLocalAuth":false},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-13T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T05:01:41.2726171Z","modifiedDate":"2025-03-12T06:17:45.6623432Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.OperationalInsights/workspaces/loganalytic","name":"loganalytic","type":"Microsoft.OperationalInsights/workspaces","etag":"\"25003dc7-0000-0d00-0000-67d127090000\""},{"properties":{"customerId":"bd53c25e-6162-46cb-ab57-dfb838ab63d4","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T08:57:41.0900605Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true,"disableLocalAuth":false},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-12T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T08:57:41.0900605Z","modifiedDate":"2025-03-12T08:57:54.0674493Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG-CAE-250312165646791609/providers/Microsoft.OperationalInsights/workspaces/acctestLAW-250312165646791609","name":"acctestLAW-250312165646791609","type":"Microsoft.OperationalInsights/workspaces","etag":"\"2700c3dc-0000-0d00-0000-67d14c920000\""},{"properties":{"customerId":"8e393cb5-8d27-43ff-a567-d793bb3f4598","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T08:57:32.0380288Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-13T01:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T08:57:32.0380288Z","modifiedDate":"2025-03-12T08:57:33.9285878Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000004_556d2bc1-0366-4412-9221-3bf7c8ee3bf9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000004-ws","name":"managed-clitestai000004-ws","type":"Microsoft.OperationalInsights/workspaces","etag":"\"02003717-0000-0700-0000-67d14c7d0000\""},{"properties":{"customerId":"e5afaf21-e667-469b-98e6-33b9f8ff6855","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2025-03-12T08:58:15.8983667Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2025-03-12T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2025-03-12T08:58:15.8983667Z","modifiedDate":"2025-03-12T08:58:17.9920084Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestaiq3csojjvoknkrxz_f5954891-0c54-4c01-8550-8dc6e8c4d79e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestaiq3csojjvoknkrxz-ws","name":"managed-clitestaiq3csojjvoknkrxz-ws","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0200e018-0000-0700-0000-67d14ca90000\""}]}'
headers:
cache-control:
- no-cache
content-length:
- - '2765'
+ - '3832'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:40:49 GMT
+ - Wed, 12 Mar 2025 08:58:41 GMT
expires:
- '-1'
pragma:
@@ -1215,9 +818,9 @@ interactions:
- ''
- ''
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: DBE78E31ABE2428D8387FD24CAE228CF Ref B: MAA201060514037 Ref C: 2024-08-29T02:40:48Z'
+ - 'Ref A: 744907CC192541BA9B3B48174FFB9996 Ref B: MAA201060514027 Ref C: 2025-03-12T08:58:41Z'
status:
code: 200
message: OK
@@ -1236,164 +839,152 @@ interactions:
uri: https://appinsights.azureedge.net/portal/regionMapping.json
response:
body:
- string: "{\r\n \"regions\": {\r\n \"centralus\": {\r\n \"geo\": \"\
- unitedstates\",\r\n \"pairedRegions\": [\r\n \"eastus2\",\r\n\
- \ \"eastus\"\r\n ],\r\n \"laRegionCode\": \"CUS\"\r\n \
- \ },\r\n \"eastus2\": {\r\n \"geo\": \"unitedstates\",\r\n \"\
- pairedRegions\": [\r\n \"centralus\",\r\n \"eastus\"\r\n \
- \ ],\r\n \"laRegionCode\": \"EUS2\"\r\n },\r\n \"eastus\": {\r\
- \n \"geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \
- \ \"westus\"\r\n ],\r\n \"laRegionCode\": \"EUS\"\r\n },\r\n\
- \ \"northcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n \"\
- pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \"laRegionCode\"\
- : \"NCUS\"\r\n },\r\n \"southcentralus\": {\r\n \"geo\": \"unitedstates\"\
- ,\r\n \"pairedRegions\": [\r\n \"northcentralus\"\r\n ],\r\
- \n \"laRegionCode\": \"SCUS\"\r\n },\r\n \"westus2\": {\r\n \
- \ \"geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \"\
- westcentralus\"\r\n ],\r\n \"laRegionCode\": \"WUS2\"\r\n },\r\
- \n \"westus3\": {\r\n \"geo\": \"unitedstates\",\r\n \"pairedRegions\"\
- : [\r\n \"westus2\"\r\n ],\r\n \"laRegionCode\": \"USW3\"\
- \r\n },\r\n \"westcentralus\": {\r\n \"geo\": \"unitedstates\"\
- ,\r\n \"pairedRegions\": [\r\n \"westus2\"\r\n ],\r\n \
- \ \"laRegionCode\": \"WCUS\"\r\n },\r\n \"westus\": {\r\n \"\
- geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \"eastus\"\
- \r\n ],\r\n \"laRegionCode\": \"WUS\"\r\n },\r\n \"canadacentral\"\
- : {\r\n \"geo\": \"canada\",\r\n \"pairedRegions\": [\r\n \
- \ \"canadaeast\"\r\n ],\r\n \"laRegionCode\": \"CCAN\"\r\n },\r\
- \n \"canadaeast\": {\r\n \"geo\": \"canada\",\r\n \"pairedRegions\"\
- : [\r\n \"canadacentral\"\r\n ],\r\n \"laRegionCode\": \"\
- \"\r\n },\r\n \"brazilsouth\": {\r\n \"geo\": \"brazil\",\r\n \
- \ \"pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \
- \ \"laRegionCode\": \"CQ\"\r\n },\r\n \"eastasia\": {\r\n \"\
- geo\": \"asiapacific\",\r\n \"pairedRegions\": [\r\n \"southeastasia\"\
- \r\n ],\r\n \"laRegionCode\": \"EA\"\r\n },\r\n \"southeastasia\"\
- : {\r\n \"geo\": \"asiapacific\",\r\n \"pairedRegions\": [\r\n \
- \ \"eastasia\"\r\n ],\r\n \"laRegionCode\": \"SEA\"\r\n \
- \ },\r\n \"australiacentral\": {\r\n \"geo\": \"australia\",\r\n\
- \ \"pairedRegions\": [\r\n \"australiacentral2\",\r\n \"\
- australiaeast\"\r\n ],\r\n \"laRegionCode\": \"CAU\"\r\n },\r\
- \n \"australiacentral2\": {\r\n \"geo\": \"australia\",\r\n \"\
- pairedRegions\": [\r\n \"australiacentral\",\r\n \"australiaeast\"\
- \r\n ],\r\n \"laRegionCode\": \"CBR2\"\r\n },\r\n \"australiaeast\"\
- : {\r\n \"geo\": \"australia\",\r\n \"pairedRegions\": [\r\n \
- \ \"australiasoutheast\"\r\n ],\r\n \"laRegionCode\": \"EAU\"\
- \r\n },\r\n \"australiasoutheast\": {\r\n \"geo\": \"australia\"\
- ,\r\n \"pairedRegions\": [\r\n \"australiaeast\"\r\n ],\r\
- \n \"laRegionCode\": \"SEAU\"\r\n },\r\n \"chinaeast\": {\r\n \
- \ \"geo\": \"china\",\r\n \"pairedRegions\": [\r\n \"chinanorth\"\
- ,\r\n \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n\
- \ },\r\n \"chinanorth\": {\r\n \"geo\": \"china\",\r\n \"\
- pairedRegions\": [\r\n \"chinaeast\",\r\n \"chinaeast2\"\r\n\
- \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"chinaeast2\"\
- : {\r\n \"geo\": \"china\",\r\n \"pairedRegions\": [\r\n \
- \ \"chinanorth2\"\r\n ],\r\n \"laRegionCode\": \"CNE2\"\r\n },\r\
- \n \"chinanorth2\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\"\
- : [\r\n \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\
- \n },\r\n \"chinaeast3\": {\r\n \"geo\": \"china\",\r\n \"\
- pairedRegions\": [\r\n \"chinanorth3\"\r\n ],\r\n \"laRegionCode\"\
- : \"CNE3\"\r\n },\r\n \"chinanorth3\": {\r\n \"geo\": \"china\"\
- ,\r\n \"pairedRegions\": [\r\n \"chinaeast3\"\r\n ],\r\n\
- \ \"laRegionCode\": \"CNN3\"\r\n },\r\n \"centralindia\": {\r\n\
- \ \"geo\": \"india\",\r\n \"pairedRegions\": [\r\n \"southindia\"\
- \r\n ],\r\n \"laRegionCode\": \"CID\"\r\n },\r\n \"southindia\"\
- : {\r\n \"geo\": \"india\",\r\n \"pairedRegions\": [\r\n \
- \ \"centralindia\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\
- \n \"westindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\"\
- : [\r\n \"southindia\",\r\n \"centralindia\"\r\n ],\r\n\
- \ \"laRegionCode\": \"\"\r\n },\r\n \"jioindiacentral\": {\r\n\
- \ \"geo\": \"india\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\"\
- : \"JINC\"\r\n },\r\n \"jioindiawest\": {\r\n \"geo\": \"india\"\
- ,\r\n \"pairedRegions\": [],\r\n \"laRegionCode\": \"JINW\"\r\n\
- \ },\r\n \"japaneast\": {\r\n \"geo\": \"japan\",\r\n \"pairedRegions\"\
- : [\r\n \"japanwest\"\r\n ],\r\n \"laRegionCode\": \"EJP\"\
- \r\n },\r\n \"japanwest\": {\r\n \"geo\": \"japan\",\r\n \"\
- pairedRegions\": [\r\n \"japaneast\"\r\n ],\r\n \"laRegionCode\"\
- : \"OS\"\r\n },\r\n \"koreacentral\": {\r\n \"geo\": \"korea\"\
- ,\r\n \"pairedRegions\": [\r\n \"koreasouth\"\r\n ],\r\n\
- \ \"laRegionCode\": \"SE\"\r\n },\r\n \"koreasouth\": {\r\n \
- \ \"geo\": \"korea\",\r\n \"pairedRegions\": [\r\n \"koreacentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"northeurope\"\
- : {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\": [\r\n \
- \ \"westeurope\"\r\n ],\r\n \"laRegionCode\": \"NEU\"\r\n },\r\
- \n \"westeurope\": {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\"\
- : [\r\n \"northeurope\"\r\n ],\r\n \"laRegionCode\": \"WEU\"\
- \r\n },\r\n \"francecentral\": {\r\n \"geo\": \"france\",\r\n \
- \ \"pairedRegions\": [\r\n \"francesouth\"\r\n ],\r\n \
- \ \"laRegionCode\": \"PAR\"\r\n },\r\n \"francesouth\": {\r\n \
- \ \"geo\": \"france\",\r\n \"pairedRegions\": [\r\n \"francecentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"uksouth\"\
- : {\r\n \"geo\": \"unitedkingdom\",\r\n \"pairedRegions\": [\r\n\
- \ \"ukwest\"\r\n ],\r\n \"laRegionCode\": \"SUK\"\r\n \
- \ },\r\n \"ukwest\": {\r\n \"geo\": \"unitedkingdom\",\r\n \"\
- pairedRegions\": [\r\n \"uksouth\"\r\n ],\r\n \"laRegionCode\"\
- : \"WUK\"\r\n },\r\n \"germanycentral\": {\r\n \"geo\": \"germany\"\
- ,\r\n \"pairedRegions\": [\r\n \"germanynortheast\"\r\n ],\r\
- \n \"laRegionCode\": \"\"\r\n },\r\n \"germanynortheast\": {\r\n\
- \ \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanycentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"germanywestcentral\"\
- : {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \
- \ \"germanynorth\"\r\n ],\r\n \"laRegionCode\": \"DEWC\"\r\n \
- \ },\r\n \"germanynorth\": {\r\n \"geo\": \"germany\",\r\n \
- \ \"pairedRegions\": [\r\n \"germanywestcentral\"\r\n ],\r\n \
- \ \"laRegionCode\": \"DEN\"\r\n },\r\n \"switzerlandwest\": {\r\n\
- \ \"geo\": \"switzerland\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"CHW\"\r\n },\r\n \"switzerlandnorth\": {\r\n \
- \ \"geo\": \"switzerland\",\r\n \"pairedRegions\": [],\r\n \"\
- laRegionCode\": \"CHN\"\r\n },\r\n \"swedencentral\": {\r\n \"\
- geo\": \"sweden\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\"\
- : \"SEC\"\r\n },\r\n \"swedensouth\": {\r\n \"geo\": \"sweden\"\
- ,\r\n \"pairedRegions\": [],\r\n \"laRegionCode\": \"SES\"\r\n \
- \ },\r\n \"norwaywest\": {\r\n \"geo\": \"norway\",\r\n \"\
- pairedRegions\": [],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"norwayeast\"\
- : {\r\n \"geo\": \"norway\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"\"\r\n },\r\n \"southafricanorth\": {\r\n \
- \ \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \"southafricawest\"\
- \r\n ],\r\n \"laRegionCode\": \"JNB\"\r\n },\r\n \"southafricawest\"\
- : {\r\n \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \
- \ \"southafricanorth\"\r\n ],\r\n \"laRegionCode\": \"CPT\"\r\n\
- \ },\r\n \"uaenorth\": {\r\n \"geo\": \"unitedarabemirates\",\r\
- \n \"pairedRegions\": [],\r\n \"laRegionCode\": \"\"\r\n },\r\
- \n \"uaecentral\": {\r\n \"geo\": \"unitedarabemirates\",\r\n \
- \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"AUH\"\r\n },\r\n\
- \ \"qatarcentral\": {\r\n \"geo\": \"qatar\",\r\n \"pairedRegions\"\
- : [],\r\n \"laRegionCode\": \"QAC\"\r\n },\r\n \"polandcentral\"\
- : {\r\n \"geo\": \"poland\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"PLC\"\r\n },\r\n \"israelcentral\": {\r\n \
- \ \"geo\": \"israel\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\"\
- : \"ILC\"\r\n },\r\n \"italynorth\": {\r\n \"geo\": \"italy\",\r\
- \n \"pairedRegions\": [],\r\n \"laRegionCode\": \"ITN\"\r\n },\r\
- \n \"spaincentral\": {\r\n \"geo\": \"spain\",\r\n \"pairedRegions\"\
- : [],\r\n \"laRegionCode\": \"ESC\"\r\n },\r\n \"mexicocentral\"\
- : {\r\n \"geo\": \"mexico\",\r\n \"pairedRegions\": [],\r\n \
- \ \"laRegionCode\": \"MXC\"\r\n },\r\n \"taiwannorth\": {\r\n \
- \ \"geo\": \"taiwan\",\r\n \"pairedRegions\": [\r\n \"taiwannorthwest\"\
- \r\n ],\r\n \"laRegionCode\": \"TWN\"\r\n },\r\n \"taiwannorthwest\"\
- : {\r\n \"geo\": \"taiwan\",\r\n \"pairedRegions\": [\r\n \
- \ \"taiwannorth\"\r\n ],\r\n \"laRegionCode\": \"TWNW\"\r\n \
- \ },\r\n \"usdodcentral\": {\r\n \"geo\": \"azuregovernment\",\r\n\
- \ \"pairedRegions\": [\r\n \"usdodeast\"\r\n ],\r\n \
- \ \"laRegionCode\": \"\"\r\n },\r\n \"usdodeast\": {\r\n \"geo\"\
- : \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usdodcentral\"\
- \r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"usgovarizona\"\
- : {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\
- \n \"usgovtexas\"\r\n ],\r\n \"laRegionCode\": \"PHX\"\r\n\
- \ },\r\n \"usgoviowa\": {\r\n \"geo\": \"azuregovernment\",\r\n\
- \ \"pairedRegions\": [\r\n \"usgovvirginia\"\r\n ],\r\n \
- \ \"laRegionCode\": \"\"\r\n },\r\n \"usgovtexas\": {\r\n \"\
- geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usgovarizona\"\
- \r\n ],\r\n \"laRegionCode\": \"SN\"\r\n },\r\n \"usgovvirginia\"\
- : {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\
- \n \"usgoviowa\",\r\n \"usgovarizona\"\r\n ],\r\n \
- \ \"laRegionCode\": \"USBN1\"\r\n },\r\n \"ussecwest\": {\r\n \"\
- geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usseceast\"\
- \r\n ],\r\n \"laRegionCode\": \"RXW\"\r\n },\r\n \"usseceast\"\
- : {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\
- \n \"ussecwest\"\r\n ],\r\n \"laRegionCode\": \"RXE\"\r\n\
- \ },\r\n \"usnatwest\": {\r\n \"geo\": \"azuregovernment\",\r\n\
- \ \"pairedRegions\": [\r\n \"usnateast\"\r\n ],\r\n \
- \ \"laRegionCode\": \"EXW\"\r\n },\r\n \"usnateast\": {\r\n \"\
- geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n \"usnatwest\"\
- \r\n ],\r\n \"laRegionCode\": \"EXE\"\r\n }\r\n }\r\n}"
+ string: "{\r\n \"regions\": {\r\n \"centralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"eastus2\",\r\n \"eastus\"\r\n
+ \ ],\r\n \"laRegionCode\": \"CUS\"\r\n },\r\n \"eastus2\":
+ {\r\n \"geo\": \"unitedstates\",\r\n \"pairedRegions\": [\r\n \"centralus\",\r\n
+ \ \"eastus\"\r\n ],\r\n \"laRegionCode\": \"EUS2\"\r\n },\r\n
+ \ \"eastus\": {\r\n \"geo\": \"unitedstates\",\r\n \"pairedRegions\":
+ [\r\n \"westus\"\r\n ],\r\n \"laRegionCode\": \"EUS\"\r\n
+ \ },\r\n \"northcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"NCUS\"\r\n },\r\n \"southcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"northcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"SCUS\"\r\n },\r\n \"westus2\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"westcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"WUS2\"\r\n },\r\n \"westus3\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"westus2\"\r\n ],\r\n \"laRegionCode\":
+ \"USW3\"\r\n },\r\n \"westcentralus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"westus2\"\r\n ],\r\n \"laRegionCode\":
+ \"WCUS\"\r\n },\r\n \"westus\": {\r\n \"geo\": \"unitedstates\",\r\n
+ \ \"pairedRegions\": [\r\n \"eastus\"\r\n ],\r\n \"laRegionCode\":
+ \"WUS\"\r\n },\r\n \"canadacentral\": {\r\n \"geo\": \"canada\",\r\n
+ \ \"pairedRegions\": [\r\n \"canadaeast\"\r\n ],\r\n \"laRegionCode\":
+ \"CCAN\"\r\n },\r\n \"canadaeast\": {\r\n \"geo\": \"canada\",\r\n
+ \ \"pairedRegions\": [\r\n \"canadacentral\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"brazilsouth\": {\r\n \"geo\": \"brazil\",\r\n
+ \ \"pairedRegions\": [\r\n \"southcentralus\"\r\n ],\r\n \"laRegionCode\":
+ \"CQ\"\r\n },\r\n \"eastasia\": {\r\n \"geo\": \"asiapacific\",\r\n
+ \ \"pairedRegions\": [\r\n \"southeastasia\"\r\n ],\r\n \"laRegionCode\":
+ \"EA\"\r\n },\r\n \"southeastasia\": {\r\n \"geo\": \"asiapacific\",\r\n
+ \ \"pairedRegions\": [\r\n \"eastasia\"\r\n ],\r\n \"laRegionCode\":
+ \"SEA\"\r\n },\r\n \"australiacentral\": {\r\n \"geo\": \"australia\",\r\n
+ \ \"pairedRegions\": [\r\n \"australiacentral2\",\r\n \"australiaeast\"\r\n
+ \ ],\r\n \"laRegionCode\": \"CAU\"\r\n },\r\n \"australiacentral2\":
+ {\r\n \"geo\": \"australia\",\r\n \"pairedRegions\": [\r\n \"australiacentral\",\r\n
+ \ \"australiaeast\"\r\n ],\r\n \"laRegionCode\": \"CBR2\"\r\n
+ \ },\r\n \"australiaeast\": {\r\n \"geo\": \"australia\",\r\n \"pairedRegions\":
+ [\r\n \"australiasoutheast\"\r\n ],\r\n \"laRegionCode\":
+ \"EAU\"\r\n },\r\n \"australiasoutheast\": {\r\n \"geo\": \"australia\",\r\n
+ \ \"pairedRegions\": [\r\n \"australiaeast\"\r\n ],\r\n \"laRegionCode\":
+ \"SEAU\"\r\n },\r\n \"chinaeast\": {\r\n \"geo\": \"china\",\r\n
+ \ \"pairedRegions\": [\r\n \"chinanorth\",\r\n \"chinaeast2\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"chinanorth\":
+ {\r\n \"geo\": \"china\",\r\n \"pairedRegions\": [\r\n \"chinaeast\",\r\n
+ \ \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n },\r\n
+ \ \"chinaeast2\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinanorth2\"\r\n ],\r\n \"laRegionCode\": \"CNE2\"\r\n
+ \ },\r\n \"chinanorth2\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinaeast2\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n
+ \ },\r\n \"chinaeast3\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinanorth3\"\r\n ],\r\n \"laRegionCode\": \"CNE3\"\r\n
+ \ },\r\n \"chinanorth3\": {\r\n \"geo\": \"china\",\r\n \"pairedRegions\":
+ [\r\n \"chinaeast3\"\r\n ],\r\n \"laRegionCode\": \"CNN3\"\r\n
+ \ },\r\n \"centralindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [\r\n \"southindia\"\r\n ],\r\n \"laRegionCode\": \"CID\"\r\n
+ \ },\r\n \"southindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [\r\n \"centralindia\"\r\n ],\r\n \"laRegionCode\": \"\"\r\n
+ \ },\r\n \"westindia\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [\r\n \"southindia\",\r\n \"centralindia\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"jioindiacentral\": {\r\n \"geo\": \"india\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"JINC\"\r\n },\r\n
+ \ \"jioindiawest\": {\r\n \"geo\": \"india\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"JINW\"\r\n },\r\n \"japaneast\": {\r\n
+ \ \"geo\": \"japan\",\r\n \"pairedRegions\": [\r\n \"japanwest\"\r\n
+ \ ],\r\n \"laRegionCode\": \"EJP\"\r\n },\r\n \"japanwest\":
+ {\r\n \"geo\": \"japan\",\r\n \"pairedRegions\": [\r\n \"japaneast\"\r\n
+ \ ],\r\n \"laRegionCode\": \"OS\"\r\n },\r\n \"koreacentral\":
+ {\r\n \"geo\": \"korea\",\r\n \"pairedRegions\": [\r\n \"koreasouth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"SE\"\r\n },\r\n \"koreasouth\":
+ {\r\n \"geo\": \"korea\",\r\n \"pairedRegions\": [\r\n \"koreacentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"northeurope\":
+ {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\": [\r\n \"westeurope\"\r\n
+ \ ],\r\n \"laRegionCode\": \"NEU\"\r\n },\r\n \"westeurope\":
+ {\r\n \"geo\": \"europe\",\r\n \"pairedRegions\": [\r\n \"northeurope\"\r\n
+ \ ],\r\n \"laRegionCode\": \"WEU\"\r\n },\r\n \"francecentral\":
+ {\r\n \"geo\": \"france\",\r\n \"pairedRegions\": [\r\n \"francesouth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"PAR\"\r\n },\r\n \"francesouth\":
+ {\r\n \"geo\": \"france\",\r\n \"pairedRegions\": [\r\n \"francecentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"uksouth\": {\r\n
+ \ \"geo\": \"unitedkingdom\",\r\n \"pairedRegions\": [\r\n \"ukwest\"\r\n
+ \ ],\r\n \"laRegionCode\": \"SUK\"\r\n },\r\n \"ukwest\": {\r\n
+ \ \"geo\": \"unitedkingdom\",\r\n \"pairedRegions\": [\r\n \"uksouth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"WUK\"\r\n },\r\n \"germanycentral\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanynortheast\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"germanynortheast\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanycentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"germanywestcentral\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanynorth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"DEWC\"\r\n },\r\n \"germanynorth\":
+ {\r\n \"geo\": \"germany\",\r\n \"pairedRegions\": [\r\n \"germanywestcentral\"\r\n
+ \ ],\r\n \"laRegionCode\": \"DEN\"\r\n },\r\n \"switzerlandwest\":
+ {\r\n \"geo\": \"switzerland\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"CHW\"\r\n },\r\n \"switzerlandnorth\": {\r\n \"geo\": \"switzerland\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"CHN\"\r\n },\r\n
+ \ \"swedencentral\": {\r\n \"geo\": \"sweden\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"SEC\"\r\n },\r\n \"swedensouth\": {\r\n
+ \ \"geo\": \"sweden\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"SES\"\r\n },\r\n \"norwaywest\": {\r\n \"geo\": \"norway\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"\"\r\n },\r\n
+ \ \"norwayeast\": {\r\n \"geo\": \"norway\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"\"\r\n },\r\n \"southafricanorth\":
+ {\r\n \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \"southafricawest\"\r\n
+ \ ],\r\n \"laRegionCode\": \"JNB\"\r\n },\r\n \"southafricawest\":
+ {\r\n \"geo\": \"africa\",\r\n \"pairedRegions\": [\r\n \"southafricanorth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"CPT\"\r\n },\r\n \"uaenorth\":
+ {\r\n \"geo\": \"unitedarabemirates\",\r\n \"pairedRegions\": [],\r\n
+ \ \"laRegionCode\": \"\"\r\n },\r\n \"uaecentral\": {\r\n \"geo\":
+ \"unitedarabemirates\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"AUH\"\r\n },\r\n \"qatarcentral\": {\r\n \"geo\": \"qatar\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"QAC\"\r\n },\r\n
+ \ \"polandcentral\": {\r\n \"geo\": \"poland\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"PLC\"\r\n },\r\n \"israelcentral\":
+ {\r\n \"geo\": \"israel\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"ILC\"\r\n },\r\n \"italynorth\": {\r\n \"geo\": \"italy\",\r\n
+ \ \"pairedRegions\": [],\r\n \"laRegionCode\": \"ITN\"\r\n },\r\n
+ \ \"spaincentral\": {\r\n \"geo\": \"spain\",\r\n \"pairedRegions\":
+ [],\r\n \"laRegionCode\": \"ESC\"\r\n },\r\n \"mexicocentral\":
+ {\r\n \"geo\": \"mexico\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"MXC\"\r\n },\r\n \"taiwannorth\": {\r\n \"geo\": \"taiwan\",\r\n
+ \ \"pairedRegions\": [\r\n \"taiwannorthwest\"\r\n ],\r\n
+ \ \"laRegionCode\": \"TWN\"\r\n },\r\n \"taiwannorthwest\": {\r\n
+ \ \"geo\": \"taiwan\",\r\n \"pairedRegions\": [\r\n \"taiwannorth\"\r\n
+ \ ],\r\n \"laRegionCode\": \"TWNW\"\r\n },\r\n \"newzealandnorth\":
+ {\r\n \"geo\": \"newzealand\",\r\n \"pairedRegions\": [],\r\n \"laRegionCode\":
+ \"NZN\"\r\n },\r\n \"usdodcentral\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usdodeast\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"usdodeast\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usdodcentral\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"usgovarizona\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgovtexas\"\r\n ],\r\n \"laRegionCode\":
+ \"PHX\"\r\n },\r\n \"usgoviowa\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgovvirginia\"\r\n ],\r\n \"laRegionCode\":
+ \"\"\r\n },\r\n \"usgovtexas\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgovarizona\"\r\n ],\r\n \"laRegionCode\":
+ \"SN\"\r\n },\r\n \"usgovvirginia\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usgoviowa\",\r\n \"usgovarizona\"\r\n
+ \ ],\r\n \"laRegionCode\": \"USBN1\"\r\n },\r\n \"ussecwest\":
+ {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\": [\r\n
+ \ \"usseceast\"\r\n ],\r\n \"laRegionCode\": \"RXW\"\r\n },\r\n
+ \ \"usseceast\": {\r\n \"geo\": \"azuregovernment\",\r\n \"pairedRegions\":
+ [\r\n \"ussecwest\"\r\n ],\r\n \"laRegionCode\": \"RXE\"\r\n
+ \ },\r\n \"ussecwestcentral\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usseceast\"\r\n ],\r\n \"laRegionCode\":
+ \"USSWC\"\r\n },\r\n \"usnatwest\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usnateast\"\r\n ],\r\n \"laRegionCode\":
+ \"EXW\"\r\n },\r\n \"usnateast\": {\r\n \"geo\": \"azuregovernment\",\r\n
+ \ \"pairedRegions\": [\r\n \"usnatwest\"\r\n ],\r\n \"laRegionCode\":
+ \"EXE\"\r\n }\r\n }\r\n}"
headers:
access-control-allow-origin:
- '*'
@@ -1402,22 +993,19 @@ interactions:
connection:
- keep-alive
content-length:
- - '9992'
+ - '10267'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:50 GMT
+ - Wed, 12 Mar 2025 08:58:43 GMT
last-modified:
- - Wed, 07 Aug 2024 00:12:57 GMT
+ - Tue, 25 Feb 2025 16:33:19 GMT
transfer-encoding:
- chunked
vary:
- Accept-Encoding
- - Accept-Encoding
- - Accept-Encoding
- - Accept-Encoding
x-azure-ref:
- - 20240829T024050Z-1685c6c55fb4hrdmgua6qv595n00000007ng000000007aqe
+ - 20250312T085843Z-1845cb695c9f8dxbhC1SIN67kw00000007100000000047sm
x-cache:
- TCP_HIT
x-cache-info:
@@ -1449,13 +1037,13 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
@@ -1464,7 +1052,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:52 GMT
+ - Wed, 12 Mar 2025 08:58:45 GMT
expires:
- '-1'
pragma:
@@ -1480,7 +1068,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: 5EBA5E6E3D524A69BBA7119E3985FE17 Ref B: MAA201060513039 Ref C: 2024-08-29T02:40:52Z'
+ - 'Ref A: 481F488643354C61A74C25CB861A1541 Ref B: MAA201060513035 Ref C: 2025-03-12T08:58:44Z'
x-powered-by:
- ASP.NET
status:
@@ -1500,24 +1088,24 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005","name":"clitestfunction000005","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-227.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:40:43.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.109","possibleInboundIpAddresses":"40.112.243.109","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-227.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,40.112.243.109","possibleOutboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,137.135.51.231,137.135.52.22,137.135.52.42,137.135.52.79,137.135.52.122,137.135.52.140,137.135.52.161,137.135.53.86,104.40.12.208,20.253.156.28,20.245.131.41,137.135.48.93,137.135.54.109,137.135.54.221,137.135.48.164,157.56.164.196,20.245.131.32,20.245.135.25,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,20.253.156.176,20.253.153.249,20.253.155.69,20.253.157.244,137.135.49.217,104.40.4.255,40.112.243.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-227","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-253.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:36.3166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.122","possibleInboundIpAddresses":"40.112.243.122","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,40.112.243.122","possibleOutboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,20.253.136.43,168.62.16.131,168.62.16.132,168.62.16.71,168.62.16.61,168.62.21.16,168.62.21.34,168.62.21.52,168.62.21.121,168.62.21.165,168.62.21.184,168.62.21.197,168.62.21.249,168.62.23.142,168.62.23.205,168.62.20.49,104.45.215.183,168.62.200.100,168.62.200.119,104.45.211.32,104.45.210.48,168.62.16.137,168.62.22.78,168.62.22.101,168.62.23.140,40.112.243.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7607'
+ - '7678'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:54 GMT
+ - Wed, 12 Mar 2025 08:58:46 GMT
etag:
- - '"1DAF9BCD84BD2EB"'
+ - '"1DB932CF0AB57CB"'
expires:
- '-1'
pragma:
@@ -1531,9 +1119,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 4D0C18DDFE0440D1AF0574BCDC3E25DA Ref B: MAA201060515033 Ref C: 2024-08-29T02:40:53Z'
+ - 'Ref A: 5D57E68F0058420C86CAB6D0CF3B9102 Ref B: MAA201060516035 Ref C: 2025-03-12T08:58:46Z'
x-powered-by:
- ASP.NET
status:
@@ -1541,7 +1129,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION":
- "~20", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==",
+ "~22", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==",
"AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
Accept:
@@ -1559,13 +1147,13 @@ interactions:
ParameterSetName:
- -g -n --plan -s --functions-version --runtime
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
@@ -1574,9 +1162,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:40:55 GMT
+ - Wed, 12 Mar 2025 08:58:48 GMT
etag:
- - '"1DAF9BCD84BD2EB"'
+ - '"1DB932CF0AB57CB"'
expires:
- '-1'
pragma:
@@ -1590,11 +1178,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 11A80FF3DDE647BCACA9E237EEB07D79 Ref B: MAA201060514051 Ref C: 2024-08-29T02:40:54Z'
+ - 'Ref A: E3741FB877A241B88DD59694425EBA5F Ref B: MAA201060516053 Ref C: 2025-03-12T08:58:47Z'
x-powered-by:
- ASP.NET
status:
@@ -1614,36 +1202,37 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/Microsoft.Insights/components/clitestai000004?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501147a-0000-0200-0000-66cfdf820000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/microsoft.insights/components/clitestai000004\"\
- ,\r\n \"name\": \"clitestai000004\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\": \"d51ad487-bb18-4fad-a8e3-19652e013a6a\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"15a9aa38-d8fa-40a0-bd39-2247d1b50473\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=15a9aa38-d8fa-40a0-bd39-2247d1b50473;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=d51ad487-bb18-4fad-a8e3-19652e013a6a\"\
- ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2024-08-29T02:40:02.5331666+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac009e07-0000-0200-0000-67d14c880000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/microsoft.insights/components/clitestai000004\",\r\n
+ \ \"name\": \"clitestai000004\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\": \"556d2bc1-0366-4412-9221-3bf7c8ee3bf9\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"6a156a4c-ee45-4a5d-9b3c-e49707d6d98d\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=6a156a4c-ee45-4a5d-9b3c-e49707d6d98d;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=556d2bc1-0366-4412-9221-3bf7c8ee3bf9\",\r\n
+ \ \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2025-03-12T08:57:29.580474+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000004_556d2bc1-0366-4412-9221-3bf7c8ee3bf9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000004-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1312'
+ - '1544'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:40:57 GMT
+ - Wed, 12 Mar 2025 08:58:50 GMT
expires:
- '-1'
pragma:
@@ -1657,9 +1246,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 29BC5C07EFB5477886BB6F1C3F553F33 Ref B: MAA201060513049 Ref C: 2024-08-29T02:40:57Z'
+ - 'Ref A: 4904623EA3844136B6D7FEE0D3A473E8 Ref B: MAA201060515037 Ref C: 2025-03-12T08:58:50Z'
x-powered-by:
- ASP.NET
status:
@@ -1681,13 +1270,13 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
@@ -1696,7 +1285,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:06 GMT
+ - Wed, 12 Mar 2025 08:58:51 GMT
expires:
- '-1'
pragma:
@@ -1712,7 +1301,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: 69A1C2D2DEE54323BC7322245F2BB281 Ref B: MAA201060514019 Ref C: 2024-08-29T02:40:58Z'
+ - 'Ref A: B264F149698141A58875613219FC9625 Ref B: MAA201060514017 Ref C: 2025-03-12T08:58:51Z'
x-powered-by:
- ASP.NET
status:
@@ -1732,24 +1321,24 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005","name":"clitestfunction000005","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-227.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:40:56.19","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.109","possibleInboundIpAddresses":"40.112.243.109","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-227.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,40.112.243.109","possibleOutboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,137.135.51.231,137.135.52.22,137.135.52.42,137.135.52.79,137.135.52.122,137.135.52.140,137.135.52.161,137.135.53.86,104.40.12.208,20.253.156.28,20.245.131.41,137.135.48.93,137.135.54.109,137.135.54.221,137.135.48.164,157.56.164.196,20.245.131.32,20.245.135.25,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,20.253.156.176,20.253.153.249,20.253.155.69,20.253.157.244,137.135.49.217,104.40.4.255,40.112.243.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-227","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-253.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:48.77","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.122","possibleInboundIpAddresses":"40.112.243.122","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,40.112.243.122","possibleOutboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,20.253.136.43,168.62.16.131,168.62.16.132,168.62.16.71,168.62.16.61,168.62.21.16,168.62.21.34,168.62.21.52,168.62.21.121,168.62.21.165,168.62.21.184,168.62.21.197,168.62.21.249,168.62.23.142,168.62.23.205,168.62.20.49,104.45.215.183,168.62.200.100,168.62.200.119,104.45.211.32,104.45.210.48,168.62.16.137,168.62.22.78,168.62.22.101,168.62.23.140,40.112.243.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7602'
+ - '7673'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:08 GMT
+ - Wed, 12 Mar 2025 08:58:53 GMT
etag:
- - '"1DAF9BCDFA129E0"'
+ - '"1DB932CF8179220"'
expires:
- '-1'
pragma:
@@ -1763,9 +1352,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 83D7B4E6CA884F268ADC4F7D186FD304 Ref B: MAA201060513009 Ref C: 2024-08-29T02:41:07Z'
+ - 'Ref A: D634BAC1AF8B4FD9AC540AEEF475BC60 Ref B: MAA201060516009 Ref C: 2025-03-12T08:58:53Z'
x-powered-by:
- ASP.NET
status:
@@ -1773,10 +1362,10 @@ interactions:
message: OK
- request:
body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION":
- "~20", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==",
+ "~22", "FUNCTIONS_EXTENSION_VERSION": "~4", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==",
"AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==",
- "APPINSIGHTS_INSTRUMENTATIONKEY": "15a9aa38-d8fa-40a0-bd39-2247d1b50473", "APPINSIGHTS_CONNECTIONSTRING":
- "InstrumentationKey=15a9aa38-d8fa-40a0-bd39-2247d1b50473;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=d51ad487-bb18-4fad-a8e3-19652e013a6a"}}'
+ "APPINSIGHTS_INSTRUMENTATIONKEY": "6a156a4c-ee45-4a5d-9b3c-e49707d6d98d", "APPINSIGHTS_CONNECTIONSTRING":
+ "InstrumentationKey=6a156a4c-ee45-4a5d-9b3c-e49707d6d98d;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=556d2bc1-0366-4412-9221-3bf7c8ee3bf9"}}'
headers:
Accept:
- application/json
@@ -1793,13 +1382,13 @@ interactions:
ParameterSetName:
- -g --app --function
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"15a9aa38-d8fa-40a0-bd39-2247d1b50473","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=15a9aa38-d8fa-40a0-bd39-2247d1b50473;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=d51ad487-bb18-4fad-a8e3-19652e013a6a"}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"6a156a4c-ee45-4a5d-9b3c-e49707d6d98d","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=6a156a4c-ee45-4a5d-9b3c-e49707d6d98d;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=556d2bc1-0366-4412-9221-3bf7c8ee3bf9"}}'
headers:
cache-control:
- no-cache
@@ -1808,9 +1397,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:10 GMT
+ - Wed, 12 Mar 2025 08:58:56 GMT
etag:
- - '"1DAF9BCDFA129E0"'
+ - '"1DB932CF8179220"'
expires:
- '-1'
pragma:
@@ -1824,11 +1413,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: DF624BBECC534D35B597D3FF2C64F5AA Ref B: MAA201060516053 Ref C: 2024-08-29T02:41:09Z'
+ - 'Ref A: B88BCD32A33542DD8E06FA7DDEC3A3EA Ref B: MAA201060514023 Ref C: 2025-03-12T08:58:54Z'
x-powered-by:
- ASP.NET
status:
@@ -1850,13 +1439,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~20","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"15a9aa38-d8fa-40a0-bd39-2247d1b50473","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=15a9aa38-d8fa-40a0-bd39-2247d1b50473;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=d51ad487-bb18-4fad-a8e3-19652e013a6a"}}'
+ US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~22","FUNCTIONS_EXTENSION_VERSION":"~4","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"6a156a4c-ee45-4a5d-9b3c-e49707d6d98d","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=6a156a4c-ee45-4a5d-9b3c-e49707d6d98d;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=556d2bc1-0366-4412-9221-3bf7c8ee3bf9"}}'
headers:
cache-control:
- no-cache
@@ -1865,7 +1454,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:12 GMT
+ - Wed, 12 Mar 2025 08:58:58 GMT
expires:
- '-1'
pragma:
@@ -1881,7 +1470,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: B75A760C29C24CE7ADB06BAAC7FB1C82 Ref B: MAA201060514017 Ref C: 2024-08-29T02:41:12Z'
+ - 'Ref A: 02CB05E97F984D8696874BC34860B124 Ref B: MAA201060516031 Ref C: 2025-03-12T08:58:57Z'
x-powered-by:
- ASP.NET
status:
@@ -1901,24 +1490,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005","name":"clitestfunction000005","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-227.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:41:10.6133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.109","possibleInboundIpAddresses":"40.112.243.109","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-227.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,40.112.243.109","possibleOutboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,137.135.51.231,137.135.52.22,137.135.52.42,137.135.52.79,137.135.52.122,137.135.52.140,137.135.52.161,137.135.53.86,104.40.12.208,20.253.156.28,20.245.131.41,137.135.48.93,137.135.54.109,137.135.54.221,137.135.48.164,157.56.164.196,20.245.131.32,20.245.135.25,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,20.253.156.176,20.253.153.249,20.253.155.69,20.253.157.244,137.135.49.217,104.40.4.255,40.112.243.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-227","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-253.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:56.0233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.122","possibleInboundIpAddresses":"40.112.243.122","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,40.112.243.122","possibleOutboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,20.253.136.43,168.62.16.131,168.62.16.132,168.62.16.71,168.62.16.61,168.62.21.16,168.62.21.34,168.62.21.52,168.62.21.121,168.62.21.165,168.62.21.184,168.62.21.197,168.62.21.249,168.62.23.142,168.62.23.205,168.62.20.49,104.45.215.183,168.62.200.100,168.62.200.119,104.45.211.32,104.45.210.48,168.62.16.137,168.62.22.78,168.62.22.101,168.62.23.140,40.112.243.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7607'
+ - '7678'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:13 GMT
+ - Wed, 12 Mar 2025 08:58:59 GMT
etag:
- - '"1DAF9BCE839FD55"'
+ - '"1DB932CFC6A5775"'
expires:
- '-1'
pragma:
@@ -1932,9 +1521,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 832CE6157C70413C8D1D1E0E59A13A0A Ref B: MAA201060515025 Ref C: 2024-08-29T02:41:13Z'
+ - 'Ref A: 04E590EE94D94F56AAA0B9ACC76227DD Ref B: MAA201060514027 Ref C: 2025-03-12T08:58:59Z'
x-powered-by:
- ASP.NET
status:
@@ -1954,24 +1543,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.12.5 (Windows-11-10.0.22631-SP0) AZURECLI/2.63.0
+ - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.70.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005?api-version=2023-12-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005","name":"clitestfunction000005","type":"Microsoft.Web/sites","kind":"functionapp","location":"West
- US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-227.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:41:10.6133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.109","possibleInboundIpAddresses":"40.112.243.109","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-227.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,40.112.243.109","possibleOutboundIpAddresses":"137.135.50.110,137.135.50.174,137.135.51.44,137.135.51.83,137.135.51.157,137.135.51.196,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,137.135.51.231,137.135.52.22,137.135.52.42,137.135.52.79,137.135.52.122,137.135.52.140,137.135.52.161,137.135.53.86,104.40.12.208,20.253.156.28,20.245.131.41,137.135.48.93,137.135.54.109,137.135.54.221,137.135.48.164,157.56.164.196,20.245.131.32,20.245.135.25,20.253.154.204,20.253.154.233,20.253.153.102,20.253.154.245,20.245.135.142,20.253.155.8,20.253.156.176,20.253.153.249,20.253.155.69,20.253.157.244,137.135.49.217,104.40.4.255,40.112.243.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-227","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestfunction000005","state":"Running","hostNames":["clitestfunction000005.azurewebsites.net"],"webSpace":"connect_function_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-253.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/connect_function_cross_rg2000002-WestUSwebspace/sites/clitestfunction000005","repositorySiteName":"clitestfunction000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestfunction000005.azurewebsites.net","clitestfunction000005.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":"clitestfunction000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestfunction000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000006","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:56.0233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.122","possibleInboundIpAddresses":"40.112.243.122","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-253.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,40.112.243.122","possibleOutboundIpAddresses":"104.45.218.54,104.45.210.30,104.45.211.83,104.45.217.139,104.45.222.111,104.45.215.192,168.62.23.15,168.62.23.27,104.45.208.218,104.45.218.216,168.62.23.60,168.62.23.69,168.62.204.214,168.62.206.146,168.62.206.252,168.62.205.7,168.62.205.65,168.62.205.232,20.253.136.43,168.62.16.131,168.62.16.132,168.62.16.71,168.62.16.61,168.62.21.16,168.62.21.34,168.62.21.52,168.62.21.121,168.62.21.165,168.62.21.184,168.62.21.197,168.62.21.249,168.62.23.142,168.62.23.205,168.62.20.49,104.45.215.183,168.62.200.100,168.62.200.119,104.45.211.32,104.45.210.48,168.62.16.137,168.62.22.78,168.62.22.101,168.62.23.140,40.112.243.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-253","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"connect_function_cross_rg2000002","defaultHostName":"clitestfunction000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7607'
+ - '7678'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:15 GMT
+ - Wed, 12 Mar 2025 08:59:01 GMT
etag:
- - '"1DAF9BCE839FD55"'
+ - '"1DB932CFC6A5775"'
expires:
- '-1'
pragma:
@@ -1985,9 +1574,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: B5A5B34F1A1746B895CE60B43F95B151 Ref B: MAA201060514045 Ref C: 2024-08-29T02:41:14Z'
+ - 'Ref A: 9878E9966A2E4FEAB794C3F007D4CB15 Ref B: MAA201060515037 Ref C: 2025-03-12T08:59:01Z'
x-powered-by:
- ASP.NET
status:
@@ -2007,7 +1596,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/slotConfigNames?api-version=2023-01-01
response:
@@ -2022,7 +1611,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:41:16 GMT
+ - Wed, 12 Mar 2025 08:59:02 GMT
expires:
- '-1'
pragma:
@@ -2036,9 +1625,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 760443D185C6464A9D3E1DF96DE51446 Ref B: MAA201060513019 Ref C: 2024-08-29T02:41:16Z'
+ - 'Ref A: 08838750EF54463E92967D853D8BA587 Ref B: MAA201060513037 Ref C: 2025-03-12T08:59:02Z'
x-powered-by:
- ASP.NET
status:
diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp.yaml
index 3cc4e1f7fc8..b2eeb0ae324 100644
--- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp.yaml
+++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp.yaml
@@ -19,36 +19,37 @@ interactions:
ParameterSetName:
- --app --location --kind -g --application-type
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000002?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"85014473-0000-0200-0000-66cfdeec0000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000002\"\
- ,\r\n \"name\": \"clitestai000002\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\": \"532d6536-e926-47ff-a0a8-e4590eeed014\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"77630b38-9285-43f7-bba8-4aad06fdffff\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=77630b38-9285-43f7-bba8-4aad06fdffff;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=532d6536-e926-47ff-a0a8-e4590eeed014\"\
- ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2024-08-29T02:37:32.2969662+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ab005bf7-0000-0200-0000-67d14c640000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000002\",\r\n
+ \ \"name\": \"clitestai000002\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\": \"c8364996-02fb-4858-b779-db86ed3874d0\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"d8574b83-db00-4118-8919-f9ffc081a8ee\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=d8574b83-db00-4118-8919-f9ffc081a8ee;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=c8364996-02fb-4858-b779-db86ed3874d0\",\r\n
+ \ \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2025-03-12T08:56:53.564992+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000002_c8364996-02fb-4858-b779-db86ed3874d0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000002-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1297'
+ - '1529'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:37:32 GMT
+ - Wed, 12 Mar 2025 08:57:08 GMT
expires:
- '-1'
pragma:
@@ -62,11 +63,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: EC7AD1AA16B34E2587A69D6649BA0847 Ref B: MAA201060514053 Ref C: 2024-08-29T02:37:29Z'
+ - 'Ref A: 9DBFC50FF3224C879E7FFDA3880761CC Ref B: MAA201060516019 Ref C: 2025-03-12T08:56:50Z'
x-powered-by:
- ASP.NET
status:
@@ -86,36 +87,37 @@ interactions:
ParameterSetName:
- -g --app
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000002?api-version=2020-02-02-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"85014473-0000-0200-0000-66cfdeec0000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000002\"\
- ,\r\n \"name\": \"clitestai000002\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\": \"532d6536-e926-47ff-a0a8-e4590eeed014\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"77630b38-9285-43f7-bba8-4aad06fdffff\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=77630b38-9285-43f7-bba8-4aad06fdffff;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=532d6536-e926-47ff-a0a8-e4590eeed014\"\
- ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2024-08-29T02:37:32.2969662+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ab005bf7-0000-0200-0000-67d14c640000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000002\",\r\n
+ \ \"name\": \"clitestai000002\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\": \"c8364996-02fb-4858-b779-db86ed3874d0\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"d8574b83-db00-4118-8919-f9ffc081a8ee\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=d8574b83-db00-4118-8919-f9ffc081a8ee;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=c8364996-02fb-4858-b779-db86ed3874d0\",\r\n
+ \ \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2025-03-12T08:56:53.564992+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000002_c8364996-02fb-4858-b779-db86ed3874d0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000002-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1297'
+ - '1529'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:37:33 GMT
+ - Wed, 12 Mar 2025 08:57:09 GMT
expires:
- '-1'
pragma:
@@ -129,9 +131,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: F429FD2BD7494BE785D1532C69737EB2 Ref B: MAA201060515033 Ref C: 2024-08-29T02:37:33Z'
+ - 'Ref A: C8A6B778280348BDA7D07152FAD04A13 Ref B: MAA201060513051 Ref C: 2025-03-12T08:57:09Z'
x-powered-by:
- ASP.NET
status:
@@ -151,21 +153,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_webapp","date":"2024-08-29T02:37:16Z","module":"application-insights","Creator":"v-ruih@microsoft.com","DateCreated":"2024-08-29T02:37:29Z"},"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","test":"test_connect_webapp","date":"2025-03-12T08:56:43Z","module":"application-insights","Creator":"liwang3@microsoft.com","DateCreated":"2025-03-12T08:56:50Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '441'
+ - '442'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:37:35 GMT
+ - Wed, 12 Mar 2025 08:57:11 GMT
expires:
- '-1'
pragma:
@@ -177,9 +179,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 43179E25BFE0405FB35900ADD674A0E6 Ref B: MAA201060513037 Ref C: 2024-08-29T02:37:36Z'
+ - 'Ref A: 0F2C109A3ADE4A5E93E45D345BBD8E40 Ref B: MAA201060513025 Ref C: 2025-03-12T08:57:12Z'
status:
code: 200
message: OK
@@ -203,13 +205,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000004?api-version=2023-01-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000004","name":"clitestplan000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":38435,"name":"clitestplan000004","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-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":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-bay-221_38435","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-08-29T02:37:41.62"},"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/clitestplan000004","name":"clitestplan000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":49443,"name":"clitestplan000004","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-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":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-bay-071_49443","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2025-03-12T08:57:18.34"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -218,9 +220,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:37:44 GMT
+ - Wed, 12 Mar 2025 08:57:22 GMT
etag:
- - '"1DAF9BC6BF98495"'
+ - '"1DB932CC2902935"'
expires:
- '-1'
pragma:
@@ -234,11 +236,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 26AB343CF1AE49A2A87D23DCB01C8A32 Ref B: MAA201060516047 Ref C: 2024-08-29T02:37:36Z'
+ - 'Ref A: 8A57BB5FBD5641BEBF729209810A3EB4 Ref B: MAA201060515009 Ref C: 2025-03-12T08:57:12Z'
x-powered-by:
- ASP.NET
status:
@@ -258,14 +260,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000004?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000004","name":"clitestplan000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West
- US","properties":{"serverFarmId":38435,"name":"clitestplan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":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-bay-221_38435","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-08-29T02:37:41.62"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ US","properties":{"serverFarmId":49443,"name":"clitestplan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":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-bay-071_49443","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2025-03-12T08:57:18.34"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -274,7 +276,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:37:46 GMT
+ - Wed, 12 Mar 2025 08:57:26 GMT
expires:
- '-1'
pragma:
@@ -288,9 +290,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 9E8C84992A95438EB0B060F03FEA4C72 Ref B: MAA201060514021 Ref C: 2024-08-29T02:37:46Z'
+ - 'Ref A: A7FECEDCC23C4E1F821AAD69AEC79FB4 Ref B: MAA201060513053 Ref C: 2025-03-12T08:57:25Z'
x-powered-by:
- ASP.NET
status:
@@ -314,9 +316,9 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2023-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01
response:
body:
string: '{"nameAvailable":true,"reason":"","message":""}'
@@ -328,7 +330,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:37:47 GMT
+ - Wed, 12 Mar 2025 08:57:27 GMT
expires:
- '-1'
pragma:
@@ -342,9 +344,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 919F755E287A4A51BE46D18754FB9EB8 Ref B: MAA201060514021 Ref C: 2024-08-29T02:37:47Z'
+ - 'Ref A: 9546DF2503EC4D6AAC9196638C0C0D8F Ref B: MAA201060516031 Ref C: 2025-03-12T08:57:27Z'
x-powered-by:
- ASP.NET
status:
@@ -364,16 +366,16 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/providers/Microsoft.Web/webAppStacks?api-version=2023-01-01
response:
body:
string: '{"value":[{"id":null,"name":"dotnet","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":".NET","value":"dotnet","preferredOs":"windows","majorVersions":[{"displayText":".NET
- 9 (STS)","value":"dotnet9","minorVersions":[{"displayText":".NET 9 (STS)","value":"9","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v9.0","remoteDebuggingSupported":false,"isHidden":true,"isPreview":true,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|9.0","remoteDebuggingSupported":false,"isPreview":true,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"displayText":".NET
- 8 (LTS)","value":"dotnet8","minorVersions":[{"displayText":".NET 8 (LTS)","value":"8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"displayText":".NET
+ 9 (STS)","value":"dotnet9","minorVersions":[{"displayText":".NET 9 (STS)","value":"9","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v9.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"},"endOfLifeDate":"2026-05-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|9.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-05-12T00:00:00Z"}}}]},{"displayText":".NET
+ 8 (LTS)","value":"dotnet8","minorVersions":[{"displayText":".NET 8 (LTS)","value":"8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-11-10T00:00:00Z"}}}]},{"displayText":".NET
7 (STS)","value":"dotnet7","minorVersions":[{"displayText":".NET 7 (STS)","value":"7","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.x"},"endOfLifeDate":"2024-05-14T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2024-05-14T00:00:00Z"}}}]},{"displayText":".NET
- 6","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS)","value":"6","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"displayText":".NET
+ 6","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS)","value":"6","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET
5","value":"dotnet5","minorVersions":[{"displayText":".NET 5","value":"5","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v5.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"endOfLifeDate":"2022-05-08T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|5.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"endOfLifeDate":"2022-05-08T00:00:00Z"}}}]},{"displayText":".NET
Core 3","value":"dotnetcore3","minorVersions":[{"displayText":".NET Core 3.1
(LTS)","value":"3.1","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"3.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"isDeprecated":true,"endOfLifeDate":"2022-12-03T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|3.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"isDeprecated":true,"endOfLifeDate":"2022-12-03T00:00:00Z"}}},{"displayText":".NET
@@ -386,8 +388,9 @@ interactions:
V4","value":"aspdotnetv4","minorVersions":[{"displayText":"ASP.NET V4.8","value":"v4.8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v4.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1"}}}}]},{"displayText":"ASP.NET
V3","value":"aspdotnetv3","minorVersions":[{"displayText":"ASP.NET V3.5","value":"v3.5","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v2.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.1"}}}}]}]}},{"id":null,"name":"node","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Node","value":"node","preferredOs":"linux","majorVersions":[{"displayText":"Node
LTS","value":"lts","minorVersions":[{"displayText":"Node LTS","value":"lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true}}}}]},{"displayText":"Node
- 20","value":"20","minorVersions":[{"displayText":"Node 20 LTS","value":"20-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|20-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"supportedFeatures":{"disableSsh":true}},"windowsRuntimeSettings":{"runtimeVersion":"~20","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"}}}}]},{"displayText":"Node
- 18","value":"18","minorVersions":[{"displayText":"Node 18 LTS","value":"18-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|18-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"supportedFeatures":{"disableSsh":true}},"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"}}}}]},{"displayText":"Node
+ 22","value":"22","minorVersions":[{"displayText":"Node 22 LTS","value":"22-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|22-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"22.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2027-04-30T00:00:00Z"}}}]},{"displayText":"Node
+ 20","value":"20","minorVersions":[{"displayText":"Node 20 LTS","value":"20-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|20-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~20","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"endOfLifeDate":"2026-04-30T00:00:00Z"}}}]},{"displayText":"Node
+ 18","value":"18","minorVersions":[{"displayText":"Node 18 LTS","value":"18-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|18-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"endOfLifeDate":"2025-04-30T00:00:00Z"}}}]},{"displayText":"Node
16","value":"16","minorVersions":[{"displayText":"Node 16 LTS","value":"16-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|16-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-09-11T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~16","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"endOfLifeDate":"2023-09-11T00:00:00Z"}}}]},{"displayText":"Node
14","value":"14","minorVersions":[{"displayText":"Node 14 LTS","value":"14-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|14-lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~14","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"endOfLifeDate":"2023-04-30T00:00:00Z"}}}]},{"displayText":"Node
12","value":"12","minorVersions":[{"displayText":"Node 12 LTS","value":"12-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|12-lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"endOfLifeDate":"2022-04-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"12.13.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2022-04-01T00:00:00Z"}}},{"displayText":"Node
@@ -424,17 +427,19 @@ interactions:
4","value":"4","minorVersions":[{"displayText":"Node 4.8","value":"4.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|4.8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2018-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"4.8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2018-04-30T00:00:00Z"}}},{"displayText":"Node
4.5","value":"4.5","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|4.5","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2018-04-30T00:00:00Z"}}},{"displayText":"Node
4.4","value":"4.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|4.4","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2018-04-30T00:00:00Z"}}}]}]}},{"id":null,"name":"python","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Python","value":"python","preferredOs":"linux","majorVersions":[{"displayText":"Python
- 3","value":"3","minorVersions":[{"displayText":"Python 3.12","value":"3.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.12","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.12"},"supportedFeatures":{"disableSsh":true}}}},{"displayText":"Python
- 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"supportedFeatures":{"disableSsh":true},"isHidden":false}}},{"displayText":"Python
- 3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.10","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"supportedFeatures":{"disableSsh":true},"isHidden":false,"isEarlyAccess":false}}},{"displayText":"Python
- 3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"supportedFeatures":{"disableSsh":true},"isHidden":false}}},{"displayText":"Python
- 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"supportedFeatures":{"disableSsh":true}}}},{"displayText":"Python
- 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.7","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"supportedFeatures":{"disableSsh":true}}}},{"displayText":"Python
- 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"}},"windowsRuntimeSettings":{"runtimeVersion":"3.4.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"}}}}]},{"displayText":"Python
+ 3","value":"3","minorVersions":[{"displayText":"Python 3.13","value":"3.13","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.13","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.13"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2029-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3.12","value":"3.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.12","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.12"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2028-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2027-10-31T00:00:00Z","isHidden":false}}},{"displayText":"Python
+ 3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.10","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-10-31T00:00:00Z","isHidden":false,"isEarlyAccess":false}}},{"displayText":"Python
+ 3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-10-31T00:00:00Z","isHidden":false}}},{"displayText":"Python
+ 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2024-10-07T00:00:00Z"}}},{"displayText":"Python
+ 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.7","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-06-27T00:00:00Z"}}},{"displayText":"Python
+ 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"},"endOfLifeDate":"2021-12-23T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"3.4.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"}}}}]},{"displayText":"Python
2","value":"2","minorVersions":[{"displayText":"Python 2.7","value":"2.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|2.7","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.7"},"endOfLifeDate":"2020-02-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"2.7.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.7"},"endOfLifeDate":"2020-02-01T00:00:00Z"}}}]}]}},{"id":null,"name":"php","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"PHP","value":"php","preferredOs":"linux","majorVersions":[{"displayText":"PHP
- 8","value":"8","minorVersions":[{"displayText":"PHP 8.3","value":"8.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.3"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-11-23T00:00:00Z"}}},{"displayText":"PHP
- 8.2","value":"8.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.2"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-12-08T00:00:00Z"}}},{"displayText":"PHP
- 8.1","value":"8.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.1","isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.1"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-11-26T00:00:00Z"}}},{"displayText":"PHP
+ 8","value":"8","minorVersions":[{"displayText":"PHP 8.4","value":"8.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.4","remoteDebuggingSupported":false,"isHidden":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.4"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2028-12-31T00:00:00Z"}}},{"displayText":"PHP
+ 8.3","value":"8.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.3"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2027-12-31T00:00:00Z"}}},{"displayText":"PHP
+ 8.2","value":"8.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.2"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-12-31T00:00:00Z"}}},{"displayText":"PHP
+ 8.1","value":"8.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.1","isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.1"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-12-31T00:00:00Z"}}},{"displayText":"PHP
8.0","value":"8.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.0","isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.0"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-11-26T00:00:00Z"}}}]},{"displayText":"PHP
7","value":"7","minorVersions":[{"displayText":"PHP 7.4","value":"7.4","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.4","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.4","notSupportedInCreates":true},"isDeprecated":true,"endOfLifeDate":"2022-11-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PHP|7.4","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.4","notSupportedInCreates":true},"isDeprecated":true,"endOfLifeDate":"2022-11-30T00:00:00Z"}}},{"displayText":"PHP
7.3","value":"7.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|7.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.3","notSupportedInCreates":true},"endOfLifeDate":"2021-12-06T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"7.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.3","notSupportedInCreates":true},"endOfLifeDate":"2021-12-06T00:00:00Z"}}},{"displayText":"PHP
@@ -453,14 +458,20 @@ interactions:
2.3.8","value":"2.3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"RUBY|2.3.8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2019-03-31T00:00:00Z"}}},{"displayText":"Ruby
2.3.3","value":"2.3.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"RUBY|2.3.3","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2019-03-31T00:00:00Z"}}}]}]}},{"id":null,"name":"java","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Java","value":"java","preferredOs":"linux","majorVersions":[{"displayText":"Java
21","value":"21","minorVersions":[{"displayText":"Java 21","value":"21.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"21","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}},{"displayText":"Java
+ 21.0.4","value":"21.0.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}},{"displayText":"Java
+ 21.0.3","value":"21.0.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}},{"displayText":"Java
21.0.1","value":"21.0.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"21.0.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}}]},{"displayText":"Java
17","value":"17","minorVersions":[{"displayText":"Java 17","value":"17.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 17.0.12","value":"17.0.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 17.0.11","value":"17.0.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.9","value":"17.0.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.4","value":"17.0.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.4","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.3","value":"17.0.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.2","value":"17.0.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.1","value":"17.0.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
11","value":"11","minorVersions":[{"displayText":"Java 11","value":"11.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 11.0.24","value":"11.0.21","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 11.0.23","value":"11.0.21","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.21","value":"11.0.21","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.21","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.16","value":"11.0.16","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.16","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.15","value":"11.0.15","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.15","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
@@ -475,31 +486,32 @@ interactions:
11.0.5","value":"11.0.5","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.5_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.3","value":"11.0.3","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11.0.3_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.2","value":"11.0.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11.0.2_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_392","value":"8.0.392","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_392","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_345","value":"8.0.345","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_345","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_332","value":"8.0.332","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_332","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_322","value":"8.0.322","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_322","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_312","value":"8.0.312","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_312","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_302","value":"8.0.302","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_302","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_292","value":"8.0.292","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_292","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_282","value":"8.0.282","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_282","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_275","value":"8.0.275","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_265","value":"8.0.265","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_265","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_252","value":"8.0.252","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_252","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_242","value":"8.0.242","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_242","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_232","value":"8.0.232","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_232_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_212","value":"8.0.212","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_212_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_202","value":"8.0.202","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_202_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_422","value":"8.0.422","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_392","value":"8.0.392","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_392","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_345","value":"8.0.345","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_345","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_332","value":"8.0.332","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_332","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_322","value":"8.0.322","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_322","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_312","value":"8.0.312","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_312","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_302","value":"8.0.302","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_302","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_292","value":"8.0.292","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_292","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_282","value":"8.0.282","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_282","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_275","value":"8.0.275","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_265","value":"8.0.265","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_265","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_252","value":"8.0.252","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_252","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_242","value":"8.0.242","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_242","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_232","value":"8.0.232","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_232_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_212","value":"8.0.212","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_212_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_202","value":"8.0.202","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_202_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_202 (Oracle)","value":"8.0.202 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_202","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_181","value":"8.0.181","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_181_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_181","value":"8.0.181","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_181_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_181 (Oracle)","value":"8.0.181 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_181","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_172","value":"8.0.172","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_172_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_172","value":"8.0.172","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_172_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_172 (Oracle)","value":"8.0.172 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_172","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_144","value":"8.0.144","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_144","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_144","value":"8.0.144","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_144","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_111 (Oracle)","value":"8.0.111 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_111","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_102","value":"8.0.102","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_102","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_92","value":"8.0.92","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_92","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_102","value":"8.0.102","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_102","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_92","value":"8.0.92","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_92","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_73 (Oracle)","value":"8.0.73 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_73","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
1.8.0_60 (Oracle)","value":"8.0.60 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_60","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
1.8.0_25 (Oracle)","value":"8.0.25 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_25","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}}]},{"displayText":"Java
@@ -516,12 +528,18 @@ interactions:
Containers","value":"javacontainers","majorVersions":[{"displayText":"Java
SE (Embedded Web Server)","value":"javase","minorVersions":[{"displayText":"Java
SE (Embedded Web Server)","value":"SE","stackSettings":{"windowsContainerSettings":{"javaContainer":"JAVA","javaContainerVersion":"SE","isAutoUpdate":true},"linuxContainerSettings":{"java21Runtime":"JAVA|21-java21","java17Runtime":"JAVA|17-java17","java11Runtime":"JAVA|11-java11","java8Runtime":"JAVA|8-jre8","isAutoUpdate":true}}},{"displayText":"Java
+ SE 21.0.4","value":"21.0.4","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.4"}}},{"displayText":"Java
+ SE 21.0.3","value":"21.0.3","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.3"}}},{"displayText":"Java
SE 21.0.1","value":"21.0.1","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.1"}}},{"displayText":"Java
+ SE 17.0.12","value":"17.0.12","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.12"}}},{"displayText":"Java
+ SE 17.0.11","value":"17.0.11","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.11"}}},{"displayText":"Java
SE 17.0.9","value":"17.0.9","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.9"}}},{"displayText":"Java
SE 17.0.4","value":"17.0.4","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.4"}}},{"displayText":"Java
SE 17.0.3","value":"17.0.3","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.3"}}},{"displayText":"Java
SE 17.0.2","value":"17.0.2","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.2"}}},{"displayText":"Java
SE 17.0.1","value":"17.0.1","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.1"}}},{"displayText":"Java
+ SE 11.0.24","value":"11.0.24","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.24"}}},{"displayText":"Java
+ SE 11.0.23","value":"11.0.23","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.23"}}},{"displayText":"Java
SE 11.0.21","value":"11.0.21","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.21"}}},{"displayText":"Java
SE 11.0.16","value":"11.0.16","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.16"}}},{"displayText":"Java
SE 11.0.15","value":"11.0.15","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.15"}}},{"displayText":"Java
@@ -533,6 +551,8 @@ interactions:
SE 11.0.7","value":"11.0.7","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.7"}}},{"displayText":"Java
SE 11.0.6","value":"11.0.6","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.6"}}},{"displayText":"Java
SE 11.0.5","value":"11.0.5","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.5"}}},{"displayText":"Java
+ SE 8u422","value":"1.8.422","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u422"}}},{"displayText":"Java
+ SE 8u412","value":"1.8.412","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u412"}}},{"displayText":"Java
SE 8u392","value":"1.8.392","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u392"}}},{"displayText":"Java
SE 8u345","value":"1.8.345","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u345"}}},{"displayText":"Java
SE 8u332","value":"1.8.332","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u332"}}},{"displayText":"Java
@@ -544,11 +564,19 @@ interactions:
SE 8u252","value":"1.8.252","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u252"}}},{"displayText":"Java
SE 8u242","value":"1.8.242","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u242"}}},{"displayText":"Java
SE 8u232","value":"1.8.232","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u232"}}}]},{"displayText":"Red
- Hat JBoss EAP 8","value":"jbosseap","minorVersions":[{"displayText":"Red Hat
- JBoss EAP 8","value":"8","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8-java11","java17Runtime":"JBOSSEAP|8-java17","isAutoUpdate":true}}},{"displayText":"Red
- Hat JBoss EAP 8 update 1","value":"8.0.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.1-java11","java17Runtime":"JBOSSEAP|8.0.1-java17"}}}]},{"displayText":"Red
+ Hat JBoss EAP 8","value":"jbosseap8.0","minorVersions":[{"displayText":"Red
+ Hat JBoss EAP 8","value":"8","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8-java11","java17Runtime":"JBOSSEAP|8-java17","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 8.0 update 2.1","value":"8.0.2.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.2.1-java11","java17Runtime":"JBOSSEAP|8.0.2.1-java17"}}},{"displayText":"Red
+ Hat JBoss EAP 8.0 update 1","value":"8.0.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.1-java11","java17Runtime":"JBOSSEAP|8.0.1-java17"}}}]},{"displayText":"Red
+ Hat JBoss EAP 8 BYO License","value":"jbosseap8.0_byol","minorVersions":[{"displayText":"Red
+ Hat JBoss EAP 8 BYO License","value":"8","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8-java11_byol","java17Runtime":"JBOSSEAP|8-java17_byol","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 8 update 1 BYO License","value":"8.0.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.1-java11_byol","java17Runtime":"JBOSSEAP|8.0.1-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 8.0 update 2.1 BYO License","value":"8.0.2","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.2-java11_byol","java17Runtime":"JBOSSEAP|8.0.2-java17_byol"}}}]},{"displayText":"Red
Hat JBoss EAP 7","value":"jbosseap","minorVersions":[{"displayText":"Red Hat
JBoss EAP 7","value":"7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7-java8","java11Runtime":"JBOSSEAP|7-java11","java17Runtime":"JBOSSEAP|7-java17","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.18","value":"7.4.18","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.18-java8","java11Runtime":"JBOSSEAP|7.4.18-java11","java17Runtime":"JBOSSEAP|7.4.18-java17"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.17","value":"7.4.17","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.17-java8","java11Runtime":"JBOSSEAP|7.4.17-java11","java17Runtime":"JBOSSEAP|7.4.17-java17"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.16","value":"7.4.16","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.16-java8","java11Runtime":"JBOSSEAP|7.4.16-java11","java17Runtime":"JBOSSEAP|7.4.16-java17"}}},{"displayText":"Red
Hat JBoss EAP 7.4.13","value":"7.4.13","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.13-java8","java11Runtime":"JBOSSEAP|7.4.13-java11","java17Runtime":"JBOSSEAP|7.4.13-java17"}}},{"displayText":"Red
Hat JBoss EAP 7.4.7","value":"7.4.7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.7-java8","java11Runtime":"JBOSSEAP|7.4.7-java11","java17Runtime":"JBOSSEAP|7.4.7-java17"}}},{"displayText":"Red
Hat JBoss EAP 7.4.5","value":"7.4.5","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.5-java8","java11Runtime":"JBOSSEAP|7.4.5-java11","java17Runtime":"JBOSSEAP|7.4.5-java17"}}},{"displayText":"Red
@@ -559,9 +587,22 @@ interactions:
Hat JBoss EAP 7.3.9","value":"7.3.9","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3.9-java8","java11Runtime":"JBOSSEAP|7.3.9-java11"}}},{"displayText":"Red
Hat JBoss EAP 7.3","value":"7.3","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3-java8","java11Runtime":"JBOSSEAP|7.3-java11","isAutoUpdate":true,"isHidden":true}}},{"displayText":"Red
Hat JBoss EAP 7.4","value":"7.4","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4-java8","java11Runtime":"JBOSSEAP|7.4-java11","isAutoUpdate":true,"isHidden":true}}},{"displayText":"JBoss
- EAP 7.2","value":"7.2.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.2-java8","isDeprecated":true}}}]},{"displayText":"Apache
+ EAP 7.2","value":"7.2.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.2-java8","isDeprecated":true}}}]},{"displayText":"Red
+ Hat JBoss EAP 7 BYO License","value":"jbosseap7_byol","minorVersions":[{"displayText":"Red
+ Hat JBoss EAP 7 BYO License","value":"7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7-java8_byol","java11Runtime":"JBOSSEAP|7-java11_byol","java17Runtime":"JBOSSEAP|7-java17_byol","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.13 BYO License","value":"7.4.13","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.13-java8_byol","java11Runtime":"JBOSSEAP|7.4.13-java11_byol","java17Runtime":"JBOSSEAP|7.4.13-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.7 BYO License","value":"7.4.7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.7-java8_byol","java11Runtime":"JBOSSEAP|7.4.7-java11_byol","java17Runtime":"JBOSSEAP|7.4.7-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.5 BYO License","value":"7.4.5","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.5-java8_byol","java11Runtime":"JBOSSEAP|7.4.5-java11_byol","java17Runtime":"JBOSSEAP|7.4.5-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.2 BYO License","value":"7.4.2","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.2-java8_byol","java11Runtime":"JBOSSEAP|7.4.2-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.1 BYO License","value":"7.4.1","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.1-java8_byol","java11Runtime":"JBOSSEAP|7.4.1-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.0 BYO License","value":"7.4.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.0-java8_byol","java11Runtime":"JBOSSEAP|7.4.0-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.3.10 BYO License","value":"7.3.10","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3.10-java8_byol","java11Runtime":"JBOSSEAP|7.3.10-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.3.9 BYO License","value":"7.3.9","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3.9-java8_byol","java11Runtime":"JBOSSEAP|7.3.9-java11_byol"}}}]},{"displayText":"Apache
Tomcat 10.1","value":"tomcat10.1","minorVersions":[{"displayText":"Apache
Tomcat 10.1","value":"10.1","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1","isAutoUpdate":true},"linuxContainerSettings":{"java21Runtime":"TOMCAT|10.1-java21","java17Runtime":"TOMCAT|10.1-java17","java11Runtime":"TOMCAT|10.1-java11","isAutoUpdate":true}}},{"displayText":"Apache
+ Tomcat 10.1.28","value":"10.1.28","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.28","isHidden":true},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.28-java11","java17Runtime":"TOMCAT|10.1.28-java17","java21Runtime":"TOMCAT|10.1.28-java21"}}},{"displayText":"Apache
+ Tomcat 10.1.25","value":"10.1.25","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.25","isHidden":true},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.25-java11","java17Runtime":"TOMCAT|10.1.25-java17","java21Runtime":"TOMCAT|10.1.25-java21"}}},{"displayText":"Apache
+ Tomcat 10.1.23","value":"10.1.23","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.23","isHidden":true},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.23-java11","java17Runtime":"TOMCAT|10.1.23-java17","java21Runtime":"TOMCAT|10.1.23-java21"}}},{"displayText":"Apache
Tomcat 10.1.16","value":"10.1.16","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.16"},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.16-java11","java17Runtime":"TOMCAT|10.1.16-java17","java21Runtime":"TOMCAT|10.1.16-java21"}}}]},{"displayText":"Apache
Tomcat 10.0","value":"tomcat10.0","minorVersions":[{"displayText":"Apache
Tomcat 10.0","value":"10.0","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0","isAutoUpdate":true,"endOfLifeDate":"2022-10-31T00:00:00Z"},"linuxContainerSettings":{"java17Runtime":"TOMCAT|10.0-java17","java11Runtime":"TOMCAT|10.0-java11","java8Runtime":"TOMCAT|10.0-jre8","isAutoUpdate":true,"endOfLifeDate":"2022-10-31T00:00:00Z"}}},{"displayText":"Apache
@@ -572,6 +613,9 @@ interactions:
Tomcat 10.0.12","value":"10.0.12","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.12","endOfLifeDate":"2022-10-31T00:00:00Z"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.12-java8","java11Runtime":"TOMCAT|10.0.12-java11","java17Runtime":"TOMCAT|10.0.12-java17","endOfLifeDate":"2022-10-31T00:00:00Z"}}}]},{"displayText":"Apache
Tomcat 9.0","value":"tomcat9.0","minorVersions":[{"displayText":"Apache Tomcat
9.0","value":"9.0","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0","isAutoUpdate":true},"linuxContainerSettings":{"java21Runtime":"TOMCAT|9.0-java21","java17Runtime":"TOMCAT|9.0-java17","java11Runtime":"TOMCAT|9.0-java11","java8Runtime":"TOMCAT|9.0-jre8","isAutoUpdate":true}}},{"displayText":"Apache
+ Tomcat 9.0.93","value":"9.0.93","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.93","isHidden":true},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.93-java8","java11Runtime":"TOMCAT|9.0.93-java11","java17Runtime":"TOMCAT|9.0.93-java17","java21Runtime":"TOMCAT|9.0.93-java21"}}},{"displayText":"Apache
+ Tomcat 9.0.90","value":"9.0.90","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.90","isHidden":true},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.90-java8","java11Runtime":"TOMCAT|9.0.90-java11","java17Runtime":"TOMCAT|9.0.90-java17","java21Runtime":"TOMCAT|9.0.90-java21"}}},{"displayText":"Apache
+ Tomcat 9.0.88","value":"9.0.88","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.88","isHidden":true},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.88-java8","java11Runtime":"TOMCAT|9.0.88-java11","java17Runtime":"TOMCAT|9.0.88-java17","java21Runtime":"TOMCAT|9.0.88-java21"}}},{"displayText":"Apache
Tomcat 9.0.83","value":"9.0.83","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.83"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.83-java8","java11Runtime":"TOMCAT|9.0.83-java11","java17Runtime":"TOMCAT|9.0.83-java17","java21Runtime":"TOMCAT|9.0.83-java21"}}},{"displayText":"Apache
Tomcat 9.0.65","value":"9.0.65","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.65"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.65-java8","java11Runtime":"TOMCAT|9.0.65-java11","java17Runtime":"TOMCAT|9.0.65-java17"}}},{"displayText":"Apache
Tomcat 9.0.63","value":"9.0.63","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.63"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.63-java8","java11Runtime":"TOMCAT|9.0.63-java11","java17Runtime":"TOMCAT|9.0.63-java17"}}},{"displayText":"Apache
@@ -593,6 +637,7 @@ interactions:
Tomcat 9.0.0","value":"9.0.0","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.0"}}}]},{"displayText":"Apache
Tomcat 8.5","value":"tomcat8.5","minorVersions":[{"displayText":"Apache Tomcat
8.5","value":"8.5","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5","isAutoUpdate":true,"endOfLifeDate":"2024-03-31T00:00:00Z"},"linuxContainerSettings":{"java11Runtime":"TOMCAT|8.5-java11","java8Runtime":"TOMCAT|8.5-jre8","isAutoUpdate":true,"endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
+ Tomcat 8.5.100","value":"8.5.100","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.100-java8","java11Runtime":"TOMCAT|8.5.100-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.100","endOfLifeDate":"2024-03-31T00:00:00Z","isHidden":true}}},{"displayText":"Apache
Tomcat 8.5.96","value":"8.5.96","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.96-java8","java11Runtime":"TOMCAT|8.5.96-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.96","endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
Tomcat 8.5.82","value":"8.5.82","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.82-java8","java11Runtime":"TOMCAT|8.5.82-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.82","endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
Tomcat 8.5.79","value":"8.5.79","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.79-java8","java11Runtime":"TOMCAT|8.5.79-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.79","endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
@@ -640,11 +685,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '88528'
+ - '99645'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:37:49 GMT
+ - Wed, 12 Mar 2025 08:57:28 GMT
expires:
- '-1'
pragma:
@@ -658,7 +703,7 @@ interactions:
x-content-type-options:
- nosniff
x-msedge-ref:
- - 'Ref A: 383EA5F8AA06425B827098D9DBD9D5AB Ref B: MAA201060514037 Ref C: 2024-08-29T02:37:48Z'
+ - 'Ref A: 05CF123EF30B4595896FC1DC2E60548E Ref B: MAA201060513023 Ref C: 2025-03-12T08:57:28Z'
x-powered-by:
- ASP.NET
status:
@@ -686,26 +731,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003","name":"clitestwebapp000003","type":"Microsoft.Web/sites","kind":"app","location":"West
- US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-221.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:37:55.0766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
+ US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:57:32.6333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
all","description":"Allow all access"}],"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"elasticWebAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.105","possibleInboundIpAddresses":"40.112.243.105","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-221.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,40.112.243.105","possibleOutboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,20.253.223.8,20.253.223.12,20.253.223.45,20.253.223.87,20.253.223.97,20.253.223.125,20.253.223.144,20.253.223.0,20.253.223.168,20.253.223.11,20.253.223.219,20.245.205.247,20.253.217.148,20.253.217.149,20.253.218.166,20.253.218.176,20.253.218.228,20.253.218.229,20.253.220.176,20.253.220.177,20.253.223.98,20.253.223.118,20.253.218.177,20.253.223.119,40.112.243.105","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-221","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"elasticWebAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250,40.112.243.15","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-071.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,23.101.207.250","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,172.184.184.113,138.91.194.55,40.78.30.41,40.78.54.188,104.210.43.219,40.78.24.207,20.237.140.37,20.237.142.60,20.237.142.97,20.237.136.27,20.237.137.142,20.237.142.112,168.62.207.25,104.45.223.148,168.61.7.34,168.61.4.187,168.61.1.248,168.62.209.166,23.101.207.250","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7673'
+ - '7524'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:15 GMT
+ - Wed, 12 Mar 2025 08:57:54 GMT
etag:
- - '"1DAF9BC740678C0"'
+ - '"1DB932CCB07ED20"'
expires:
- '-1'
pragma:
@@ -721,7 +766,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '499'
x-msedge-ref:
- - 'Ref A: 3AA8926379294E0DA683E5E9D8350D40 Ref B: MAA201060514021 Ref C: 2024-08-29T02:37:50Z'
+ - 'Ref A: 5A360027EA0C457EA57437B22B283FA2 Ref B: MAA201060513053 Ref C: 2025-03-12T08:57:29Z'
x-powered-by:
- ASP.NET
status:
@@ -745,7 +790,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/publishxml?api-version=2023-01-01
response:
@@ -756,7 +801,7 @@ interactions:
destinationAppUrl="http://clitestwebapp000003.azurewebsites.net" SQLServerDBConnectionString="REDACTED"
mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="https://portal.azure.com"
webSystem="WebSites">
headers:
cache-control:
- no-cache
content-length:
- - '1415'
+ - '1900'
content-type:
- application/xml
date:
- - Thu, 29 Aug 2024 02:38:17 GMT
+ - Wed, 12 Mar 2025 08:57:56 GMT
expires:
- '-1'
pragma:
@@ -790,7 +840,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: F49E2759C64347AE86035C9D7DE1C239 Ref B: MAA201060514023 Ref C: 2024-08-29T02:38:16Z'
+ - 'Ref A: 0788C7765D7147B7A307F6B3769D5916 Ref B: MAA201060514047 Ref C: 2025-03-12T08:57:55Z'
x-powered-by:
- ASP.NET
status:
@@ -810,36 +860,37 @@ interactions:
ParameterSetName:
- -g --app --web-app --enable-profiler --enable-snapshot-debugger
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000002?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"85014473-0000-0200-0000-66cfdeec0000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000002\"\
- ,\r\n \"name\": \"clitestai000002\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\": \"532d6536-e926-47ff-a0a8-e4590eeed014\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"77630b38-9285-43f7-bba8-4aad06fdffff\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=77630b38-9285-43f7-bba8-4aad06fdffff;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=532d6536-e926-47ff-a0a8-e4590eeed014\"\
- ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2024-08-29T02:37:32.2969662+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ab005bf7-0000-0200-0000-67d14c640000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestai000002\",\r\n
+ \ \"name\": \"clitestai000002\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\": \"c8364996-02fb-4858-b779-db86ed3874d0\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"d8574b83-db00-4118-8919-f9ffc081a8ee\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=d8574b83-db00-4118-8919-f9ffc081a8ee;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=c8364996-02fb-4858-b779-db86ed3874d0\",\r\n
+ \ \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2025-03-12T08:56:53.564992+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000002_c8364996-02fb-4858-b779-db86ed3874d0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000002-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1297'
+ - '1529'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:18 GMT
+ - Wed, 12 Mar 2025 08:57:57 GMT
expires:
- '-1'
pragma:
@@ -853,9 +904,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1849CBB1F1DC41A9B742440E997DBD69 Ref B: MAA201060515033 Ref C: 2024-08-29T02:38:18Z'
+ - 'Ref A: EE4357F1AE66444A992AFAF392679DA6 Ref B: MAA201060516027 Ref C: 2025-03-12T08:57:57Z'
x-powered-by:
- ASP.NET
status:
@@ -877,7 +928,7 @@ interactions:
ParameterSetName:
- -g --app --web-app --enable-profiler --enable-snapshot-debugger
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/appsettings/list?api-version=2023-01-01
response:
@@ -892,7 +943,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:20 GMT
+ - Wed, 12 Mar 2025 08:57:58 GMT
expires:
- '-1'
pragma:
@@ -908,7 +959,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: 0A0A8B2D169D4BD187EABBE97CF1B94B Ref B: MAA201060514053 Ref C: 2024-08-29T02:38:19Z'
+ - 'Ref A: 9E1DE0AED6D849D48D345AA3F76ACF52 Ref B: MAA201060513039 Ref C: 2025-03-12T08:57:58Z'
x-powered-by:
- ASP.NET
status:
@@ -928,24 +979,24 @@ interactions:
ParameterSetName:
- -g --app --web-app --enable-profiler --enable-snapshot-debugger
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003","name":"clitestwebapp000003","type":"Microsoft.Web/sites","kind":"app","location":"West
- US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-221.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:38:15.5133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.105","possibleInboundIpAddresses":"40.112.243.105","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-221.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,40.112.243.105","possibleOutboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,20.253.223.8,20.253.223.12,20.253.223.45,20.253.223.87,20.253.223.97,20.253.223.125,20.253.223.144,20.253.223.0,20.253.223.168,20.253.223.11,20.253.223.219,20.245.205.247,20.253.217.148,20.253.217.149,20.253.218.166,20.253.218.176,20.253.218.228,20.253.218.229,20.253.220.176,20.253.220.177,20.253.223.98,20.253.223.118,20.253.218.177,20.253.223.119,40.112.243.105","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-221","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:57:54.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250,40.112.243.15","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-071.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,23.101.207.250","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,172.184.184.113,138.91.194.55,40.78.30.41,40.78.54.188,104.210.43.219,40.78.24.207,20.237.140.37,20.237.142.60,20.237.142.97,20.237.136.27,20.237.137.142,20.237.142.112,168.62.207.25,104.45.223.148,168.61.7.34,168.61.4.187,168.61.1.248,168.62.209.166,23.101.207.250","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7343'
+ - '7189'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:22 GMT
+ - Wed, 12 Mar 2025 08:58:00 GMT
etag:
- - '"1DAF9BC7FDBD995"'
+ - '"1DB932CD7D27660"'
expires:
- '-1'
pragma:
@@ -959,9 +1010,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 04D79B90F9854F628661C93B03FB5ACC Ref B: MAA201060516021 Ref C: 2024-08-29T02:38:21Z'
+ - 'Ref A: 0942EEC1585D40AFB462B7C32A6E4AF9 Ref B: MAA201060513037 Ref C: 2025-03-12T08:58:00Z'
x-powered-by:
- ASP.NET
status:
@@ -969,7 +1020,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"WEBSITE_NODE_DEFAULT_VERSION": "~16", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "77630b38-9285-43f7-bba8-4aad06fdffff", "APPINSIGHTS_CONNECTIONSTRING": "InstrumentationKey=77630b38-9285-43f7-bba8-4aad06fdffff;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=532d6536-e926-47ff-a0a8-e4590eeed014",
+ "d8574b83-db00-4118-8919-f9ffc081a8ee", "APPINSIGHTS_CONNECTIONSTRING": "InstrumentationKey=d8574b83-db00-4118-8919-f9ffc081a8ee;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=c8364996-02fb-4858-b779-db86ed3874d0",
"APPINSIGHTS_PROFILERFEATURE_VERSION": "1.0.0", "APPINSIGHTS_SNAPSHOTFEATURE_VERSION":
"1.0.0"}}'
headers:
@@ -988,13 +1039,13 @@ interactions:
ParameterSetName:
- -g --app --web-app --enable-profiler --enable-snapshot-debugger
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/appsettings?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"~16","APPINSIGHTS_INSTRUMENTATIONKEY":"77630b38-9285-43f7-bba8-4aad06fdffff","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=77630b38-9285-43f7-bba8-4aad06fdffff;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=532d6536-e926-47ff-a0a8-e4590eeed014","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}'
+ US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"~16","APPINSIGHTS_INSTRUMENTATIONKEY":"d8574b83-db00-4118-8919-f9ffc081a8ee","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=d8574b83-db00-4118-8919-f9ffc081a8ee;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=c8364996-02fb-4858-b779-db86ed3874d0","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}'
headers:
cache-control:
- no-cache
@@ -1003,9 +1054,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:24 GMT
+ - Wed, 12 Mar 2025 08:58:03 GMT
etag:
- - '"1DAF9BC7FDBD995"'
+ - '"1DB932CD7D27660"'
expires:
- '-1'
pragma:
@@ -1019,11 +1070,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 52CED5B901A4454F931AC57B1DABAD56 Ref B: MAA201060515011 Ref C: 2024-08-29T02:38:23Z'
+ - 'Ref A: 6A0FED7E05CE461AB15795A3C57F2B62 Ref B: MAA201060516035 Ref C: 2025-03-12T08:58:01Z'
x-powered-by:
- ASP.NET
status:
@@ -1045,13 +1096,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/appsettings/list?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West
- US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"~16","APPINSIGHTS_INSTRUMENTATIONKEY":"77630b38-9285-43f7-bba8-4aad06fdffff","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=77630b38-9285-43f7-bba8-4aad06fdffff;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=532d6536-e926-47ff-a0a8-e4590eeed014","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}'
+ US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"~16","APPINSIGHTS_INSTRUMENTATIONKEY":"d8574b83-db00-4118-8919-f9ffc081a8ee","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=d8574b83-db00-4118-8919-f9ffc081a8ee;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=c8364996-02fb-4858-b779-db86ed3874d0","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}'
headers:
cache-control:
- no-cache
@@ -1060,7 +1111,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:26 GMT
+ - Wed, 12 Mar 2025 08:58:06 GMT
expires:
- '-1'
pragma:
@@ -1076,7 +1127,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '11999'
x-msedge-ref:
- - 'Ref A: 1FAF330BC0B14B7EB7680329FA940541 Ref B: MAA201060513025 Ref C: 2024-08-29T02:38:25Z'
+ - 'Ref A: D7C4100763284486BDC7DEE21B67918F Ref B: MAA201060514035 Ref C: 2025-03-12T08:58:05Z'
x-powered-by:
- ASP.NET
status:
@@ -1096,24 +1147,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003","name":"clitestwebapp000003","type":"Microsoft.Web/sites","kind":"app","location":"West
- US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-221.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:38:24.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.105","possibleInboundIpAddresses":"40.112.243.105","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-221.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,40.112.243.105","possibleOutboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,20.253.223.8,20.253.223.12,20.253.223.45,20.253.223.87,20.253.223.97,20.253.223.125,20.253.223.144,20.253.223.0,20.253.223.168,20.253.223.11,20.253.223.219,20.245.205.247,20.253.217.148,20.253.217.149,20.253.218.166,20.253.218.176,20.253.218.228,20.253.218.229,20.253.220.176,20.253.220.177,20.253.223.98,20.253.223.118,20.253.218.177,20.253.223.119,40.112.243.105","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-221","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:03.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250,40.112.243.15","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-071.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,23.101.207.250","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,172.184.184.113,138.91.194.55,40.78.30.41,40.78.54.188,104.210.43.219,40.78.24.207,20.237.140.37,20.237.142.60,20.237.142.97,20.237.136.27,20.237.137.142,20.237.142.112,168.62.207.25,104.45.223.148,168.61.7.34,168.61.4.187,168.61.1.248,168.62.209.166,23.101.207.250","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7343'
+ - '7189'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:27 GMT
+ - Wed, 12 Mar 2025 08:58:08 GMT
etag:
- - '"1DAF9BC850542D5"'
+ - '"1DB932CDD0B21E0"'
expires:
- '-1'
pragma:
@@ -1127,9 +1178,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 742C018110B44771911F63BB12B394EC Ref B: MAA201060516035 Ref C: 2024-08-29T02:38:27Z'
+ - 'Ref A: 9A029A389DCE48E291C7B2A7E9F6DC1D Ref B: MAA201060516051 Ref C: 2025-03-12T08:58:07Z'
x-powered-by:
- ASP.NET
status:
@@ -1149,24 +1200,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.12.5 (Windows-11-10.0.22631-SP0) AZURECLI/2.63.0
+ - python/3.10.11 (Windows-10-10.0.26100-SP0) AZURECLI/2.70.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003?api-version=2023-12-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003","name":"clitestwebapp000003","type":"Microsoft.Web/sites","kind":"app","location":"West
- US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-221.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:38:24.1733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.105","possibleInboundIpAddresses":"40.112.243.105","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-221.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,40.112.243.105","possibleOutboundIpAddresses":"20.253.222.209,20.253.222.211,20.253.222.226,20.253.222.240,20.253.222.243,20.253.222.248,20.253.223.8,20.253.223.12,20.253.223.45,20.253.223.87,20.253.223.97,20.253.223.125,20.253.223.144,20.253.223.0,20.253.223.168,20.253.223.11,20.253.223.219,20.245.205.247,20.253.217.148,20.253.217.149,20.253.218.166,20.253.218.176,20.253.218.228,20.253.218.229,20.253.220.176,20.253.220.177,20.253.223.98,20.253.223.118,20.253.218.177,20.253.223.119,40.112.243.105","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-221","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/clitestwebapp000003","repositorySiteName":"clitestwebapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000003.azurewebsites.net","clitestwebapp000003.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":"clitestwebapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":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/clitestplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:03.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":null,"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"elasticWebAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250,40.112.243.15","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-071.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,23.101.207.250","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194,172.184.184.113,138.91.194.55,40.78.30.41,40.78.54.188,104.210.43.219,40.78.24.207,20.237.140.37,20.237.142.60,20.237.142.97,20.237.136.27,20.237.137.142,20.237.142.112,168.62.207.25,104.45.223.148,168.61.7.34,168.61.4.187,168.61.1.248,168.62.209.166,23.101.207.250","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7343'
+ - '7189'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:28 GMT
+ - Wed, 12 Mar 2025 08:58:09 GMT
etag:
- - '"1DAF9BC850542D5"'
+ - '"1DB932CDD0B21E0"'
expires:
- '-1'
pragma:
@@ -1180,9 +1231,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1A63B4B6D65D4AF8B1B05031B3948CFE Ref B: MAA201060515029 Ref C: 2024-08-29T02:38:28Z'
+ - 'Ref A: E28CCE7C22F1449E9524D4D46B513FE6 Ref B: MAA201060513037 Ref C: 2025-03-12T08:58:08Z'
x-powered-by:
- ASP.NET
status:
@@ -1202,7 +1253,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/slotConfigNames?api-version=2023-01-01
response:
@@ -1217,7 +1268,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:31 GMT
+ - Wed, 12 Mar 2025 08:58:10 GMT
expires:
- '-1'
pragma:
@@ -1231,9 +1282,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 18FB831889EA496082F3E50A9AB86E2E Ref B: MAA201060514031 Ref C: 2024-08-29T02:38:30Z'
+ - 'Ref A: 07ABADC6305940F4A244A21BE202116F Ref B: MAA201060514009 Ref C: 2025-03-12T08:58:10Z'
x-powered-by:
- ASP.NET
status:
diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp_cross_resource_group.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp_cross_resource_group.yaml
index 75bc19e8b96..094e97b04b5 100644
--- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp_cross_resource_group.yaml
+++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_connect_webapp_cross_resource_group.yaml
@@ -19,36 +19,37 @@ interactions:
ParameterSetName:
- --app --location --kind -g --application-type
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2018-05-01-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501f376-0000-0200-0000-66cfdf380000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg000001/providers/microsoft.insights/components/clitestai000003\"\
- ,\r\n \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"fb073b19-1cbd-4116-b4ec-77bbcbab327b\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"49cb2d37-b317-47e4-b446-7533d664b724\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=49cb2d37-b317-47e4-b446-7533d664b724;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=fb073b19-1cbd-4116-b4ec-77bbcbab327b\"\
- ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-08-29T02:38:48.6599818+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac007d19-0000-0200-0000-67d14cb20000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg000001/providers/microsoft.insights/components/clitestai000003\",\r\n
+ \ \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"f5954891-0c54-4c01-8550-8dc6e8c4d79e\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"2758fd0a-2ab1-4f67-92d6-948756649937\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=2758fd0a-2ab1-4f67-92d6-948756649937;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=f5954891-0c54-4c01-8550-8dc6e8c4d79e\",\r\n
+ \ \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2025-03-12T08:58:12.1913151+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000003_f5954891-0c54-4c01-8550-8dc6e8c4d79e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000003-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1302'
+ - '1535'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:48 GMT
+ - Wed, 12 Mar 2025 08:58:26 GMT
expires:
- '-1'
pragma:
@@ -62,11 +63,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: E5B5E663EBFF4952A98E8634B3773856 Ref B: MAA201060516023 Ref C: 2024-08-29T02:38:45Z'
+ - 'Ref A: 06560E8FF99849529010532F08B8E9FE Ref B: MAA201060516037 Ref C: 2025-03-12T08:58:08Z'
x-powered-by:
- ASP.NET
status:
@@ -86,36 +87,37 @@ interactions:
ParameterSetName:
- -g --app
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2020-02-02-preview
response:
body:
- string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8501f376-0000-0200-0000-66cfdf380000\\\
- \"\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg000001/providers/microsoft.insights/components/clitestai000003\"\
- ,\r\n \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\"\
- ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\
- \n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"fb073b19-1cbd-4116-b4ec-77bbcbab327b\"\
- ,\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\"\
- ,\r\n \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"49cb2d37-b317-47e4-b446-7533d664b724\"\
- ,\r\n \"ConnectionString\": \"InstrumentationKey=49cb2d37-b317-47e4-b446-7533d664b724;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=fb073b19-1cbd-4116-b4ec-77bbcbab327b\"\
- ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-08-29T02:38:48.6599818+00:00\"\
- ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\
- provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\
- \n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\"\
- ,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\"\
- : \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}"
+ string: "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"ac007d19-0000-0200-0000-67d14cb20000\\\"\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg000001/providers/microsoft.insights/components/clitestai000003\",\r\n
+ \ \"name\": \"clitestai000003\",\r\n \"type\": \"microsoft.insights/components\",\r\n
+ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n
+ \ \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\": \"f5954891-0c54-4c01-8550-8dc6e8c4d79e\",\r\n
+ \ \"Application_Type\": \"web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n
+ \ \"Request_Source\": \"rest\",\r\n \"InstrumentationKey\": \"2758fd0a-2ab1-4f67-92d6-948756649937\",\r\n
+ \ \"ConnectionString\": \"InstrumentationKey=2758fd0a-2ab1-4f67-92d6-948756649937;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/;ApplicationId=f5954891-0c54-4c01-8550-8dc6e8c4d79e\",\r\n
+ \ \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2025-03-12T08:58:12.1913151+00:00\",\r\n
+ \ \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\":
+ 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai_clitestai000003_f5954891-0c54-4c01-8550-8dc6e8c4d79e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-clitestai000003-ws\",\r\n
+ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\":
+ \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\":
+ \"v2\"\r\n }\r\n}"
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1302'
+ - '1535'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:50 GMT
+ - Wed, 12 Mar 2025 08:58:28 GMT
expires:
- '-1'
pragma:
@@ -129,9 +131,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: E0AF610DA7504E2F88B4C8598792930C Ref B: MAA201060516009 Ref C: 2024-08-29T02:38:50Z'
+ - 'Ref A: EC38E711FE9349CDB04937CA3BA26ECB Ref B: MAA201060514047 Ref C: 2025-03-12T08:58:28Z'
x-powered-by:
- ASP.NET
status:
@@ -151,21 +153,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/webapp_cross_rg2000002?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002","name":"webapp_cross_rg2000002","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_webapp_cross_resource_group","date":"2024-08-29T02:38:41Z","module":"application-insights","Creator":"v-ruih@microsoft.com","DateCreated":"2024-08-29T02:38:47Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002","name":"webapp_cross_rg2000002","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_webapp_cross_resource_group","date":"2025-03-12T08:58:02Z","module":"application-insights","Creator":"liwang3@microsoft.com","DateCreated":"2025-03-12T08:58:06Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '474'
+ - '475'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 29 Aug 2024 02:38:50 GMT
+ - Wed, 12 Mar 2025 08:58:30 GMT
expires:
- '-1'
pragma:
@@ -177,9 +179,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 8EBAA3DED7304F8F9AA85614526F661A Ref B: MAA201060515035 Ref C: 2024-08-29T02:38:51Z'
+ - 'Ref A: 06E9C20362B841638336510554DB163A Ref B: MAA201060516037 Ref C: 2025-03-12T08:58:31Z'
status:
code: 200
message: OK
@@ -203,13 +205,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005?api-version=2023-01-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005","name":"clitestplan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":61767,"name":"clitestplan000005","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":"webapp_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"webapp_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-169_61767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-08-29T02:38:56.7066667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005","name":"clitestplan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":49398,"name":"clitestplan000005","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":"webapp_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"webapp_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-223_49398","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2025-03-12T08:58:38.7566667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -218,9 +220,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:38:58 GMT
+ - Wed, 12 Mar 2025 08:58:41 GMT
etag:
- - '"1DAF9BC98B94EE0"'
+ - '"1DB932CF2A3E675"'
expires:
- '-1'
pragma:
@@ -234,11 +236,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-writes:
- - '5999'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '399'
+ - '199'
x-msedge-ref:
- - 'Ref A: 1DCBA6DF58C84F9286364FE8284643EC Ref B: MAA201060514021 Ref C: 2024-08-29T02:38:51Z'
+ - 'Ref A: 944AF2D00F1F4E958E684E3D6D1AF9F4 Ref B: MAA201060514027 Ref C: 2025-03-12T08:58:31Z'
x-powered-by:
- ASP.NET
status:
@@ -258,14 +260,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005","name":"clitestplan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West
- US","properties":{"serverFarmId":61767,"name":"clitestplan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"webapp_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
- US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"webapp_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-169_61767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-08-29T02:38:56.7066667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ US","properties":{"serverFarmId":49398,"name":"clitestplan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"webapp_cross_rg2000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West
+ US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"webapp_cross_rg2000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-223_49398","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2025-03-12T08:58:38.7566667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -274,7 +276,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:01 GMT
+ - Wed, 12 Mar 2025 08:58:45 GMT
expires:
- '-1'
pragma:
@@ -288,9 +290,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 7C19F1BD3058430B8198787AA61E22F1 Ref B: MAA201060515051 Ref C: 2024-08-29T02:39:00Z'
+ - 'Ref A: 3C33264476E143F7AFB30DA525AF82D0 Ref B: MAA201060516033 Ref C: 2025-03-12T08:58:44Z'
x-powered-by:
- ASP.NET
status:
@@ -314,9 +316,9 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2023-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01
response:
body:
string: '{"nameAvailable":true,"reason":"","message":""}'
@@ -328,7 +330,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:01 GMT
+ - Wed, 12 Mar 2025 08:58:46 GMT
expires:
- '-1'
pragma:
@@ -342,9 +344,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '7499'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 8294EDB2935E437199DBAFAE933892C3 Ref B: MAA201060515025 Ref C: 2024-08-29T02:39:01Z'
+ - 'Ref A: C000BEA0CBEF44C4A9AE8E11AB65654C Ref B: MAA201060513039 Ref C: 2025-03-12T08:58:46Z'
x-powered-by:
- ASP.NET
status:
@@ -364,16 +366,16 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/providers/Microsoft.Web/webAppStacks?api-version=2023-01-01
response:
body:
string: '{"value":[{"id":null,"name":"dotnet","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":".NET","value":"dotnet","preferredOs":"windows","majorVersions":[{"displayText":".NET
- 9 (STS)","value":"dotnet9","minorVersions":[{"displayText":".NET 9 (STS)","value":"9","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v9.0","remoteDebuggingSupported":false,"isHidden":true,"isPreview":true,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|9.0","remoteDebuggingSupported":false,"isPreview":true,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"displayText":".NET
- 8 (LTS)","value":"dotnet8","minorVersions":[{"displayText":".NET 8 (LTS)","value":"8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"displayText":".NET
+ 9 (STS)","value":"dotnet9","minorVersions":[{"displayText":".NET 9 (STS)","value":"9","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v9.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"},"endOfLifeDate":"2026-05-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|9.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"9.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-05-12T00:00:00Z"}}}]},{"displayText":".NET
+ 8 (LTS)","value":"dotnet8","minorVersions":[{"displayText":".NET 8 (LTS)","value":"8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"endOfLifeDate":"2026-11-10T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|8.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-11-10T00:00:00Z"}}}]},{"displayText":".NET
7 (STS)","value":"dotnet7","minorVersions":[{"displayText":".NET 7 (STS)","value":"7","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.x"},"endOfLifeDate":"2024-05-14T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2024-05-14T00:00:00Z"}}}]},{"displayText":".NET
- 6","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS)","value":"6","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"displayText":".NET
+ 6","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS)","value":"6","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET
5","value":"dotnet5","minorVersions":[{"displayText":".NET 5","value":"5","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v5.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"endOfLifeDate":"2022-05-08T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|5.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"endOfLifeDate":"2022-05-08T00:00:00Z"}}}]},{"displayText":".NET
Core 3","value":"dotnetcore3","minorVersions":[{"displayText":".NET Core 3.1
(LTS)","value":"3.1","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"3.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"isDeprecated":true,"endOfLifeDate":"2022-12-03T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|3.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"isDeprecated":true,"endOfLifeDate":"2022-12-03T00:00:00Z"}}},{"displayText":".NET
@@ -386,8 +388,9 @@ interactions:
V4","value":"aspdotnetv4","minorVersions":[{"displayText":"ASP.NET V4.8","value":"v4.8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v4.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1"}}}}]},{"displayText":"ASP.NET
V3","value":"aspdotnetv3","minorVersions":[{"displayText":"ASP.NET V3.5","value":"v3.5","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v2.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.1"}}}}]}]}},{"id":null,"name":"node","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Node","value":"node","preferredOs":"linux","majorVersions":[{"displayText":"Node
LTS","value":"lts","minorVersions":[{"displayText":"Node LTS","value":"lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true}}}}]},{"displayText":"Node
- 20","value":"20","minorVersions":[{"displayText":"Node 20 LTS","value":"20-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|20-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"supportedFeatures":{"disableSsh":true}},"windowsRuntimeSettings":{"runtimeVersion":"~20","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"}}}}]},{"displayText":"Node
- 18","value":"18","minorVersions":[{"displayText":"Node 18 LTS","value":"18-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|18-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"supportedFeatures":{"disableSsh":true}},"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"}}}}]},{"displayText":"Node
+ 22","value":"22","minorVersions":[{"displayText":"Node 22 LTS","value":"22-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|22-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"22.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2027-04-30T00:00:00Z"}}}]},{"displayText":"Node
+ 20","value":"20","minorVersions":[{"displayText":"Node 20 LTS","value":"20-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|20-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~20","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"20.x"},"endOfLifeDate":"2026-04-30T00:00:00Z"}}}]},{"displayText":"Node
+ 18","value":"18","minorVersions":[{"displayText":"Node 18 LTS","value":"18-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|18-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"endOfLifeDate":"2025-04-30T00:00:00Z"}}}]},{"displayText":"Node
16","value":"16","minorVersions":[{"displayText":"Node 16 LTS","value":"16-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|16-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-09-11T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~16","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"endOfLifeDate":"2023-09-11T00:00:00Z"}}}]},{"displayText":"Node
14","value":"14","minorVersions":[{"displayText":"Node 14 LTS","value":"14-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|14-lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~14","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"endOfLifeDate":"2023-04-30T00:00:00Z"}}}]},{"displayText":"Node
12","value":"12","minorVersions":[{"displayText":"Node 12 LTS","value":"12-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|12-lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"endOfLifeDate":"2022-04-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"12.13.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2022-04-01T00:00:00Z"}}},{"displayText":"Node
@@ -424,17 +427,19 @@ interactions:
4","value":"4","minorVersions":[{"displayText":"Node 4.8","value":"4.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|4.8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2018-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"4.8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2018-04-30T00:00:00Z"}}},{"displayText":"Node
4.5","value":"4.5","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|4.5","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2018-04-30T00:00:00Z"}}},{"displayText":"Node
4.4","value":"4.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|4.4","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2018-04-30T00:00:00Z"}}}]}]}},{"id":null,"name":"python","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Python","value":"python","preferredOs":"linux","majorVersions":[{"displayText":"Python
- 3","value":"3","minorVersions":[{"displayText":"Python 3.12","value":"3.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.12","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.12"},"supportedFeatures":{"disableSsh":true}}}},{"displayText":"Python
- 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"supportedFeatures":{"disableSsh":true},"isHidden":false}}},{"displayText":"Python
- 3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.10","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"supportedFeatures":{"disableSsh":true},"isHidden":false,"isEarlyAccess":false}}},{"displayText":"Python
- 3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"supportedFeatures":{"disableSsh":true},"isHidden":false}}},{"displayText":"Python
- 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"supportedFeatures":{"disableSsh":true}}}},{"displayText":"Python
- 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.7","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"supportedFeatures":{"disableSsh":true}}}},{"displayText":"Python
- 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"}},"windowsRuntimeSettings":{"runtimeVersion":"3.4.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"}}}}]},{"displayText":"Python
+ 3","value":"3","minorVersions":[{"displayText":"Python 3.13","value":"3.13","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.13","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.13"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2029-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3.12","value":"3.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.12","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.12"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2028-10-31T00:00:00Z"}}},{"displayText":"Python
+ 3.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2027-10-31T00:00:00Z","isHidden":false}}},{"displayText":"Python
+ 3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.10","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-10-31T00:00:00Z","isHidden":false,"isEarlyAccess":false}}},{"displayText":"Python
+ 3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-10-31T00:00:00Z","isHidden":false}}},{"displayText":"Python
+ 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2024-10-07T00:00:00Z"}}},{"displayText":"Python
+ 3.7","value":"3.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.7","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.7"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-06-27T00:00:00Z"}}},{"displayText":"Python
+ 3.6","value":"3.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.6","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"},"endOfLifeDate":"2021-12-23T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"3.4.0","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.6"}}}}]},{"displayText":"Python
2","value":"2","minorVersions":[{"displayText":"Python 2.7","value":"2.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|2.7","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.7"},"endOfLifeDate":"2020-02-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"2.7.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"2.7"},"endOfLifeDate":"2020-02-01T00:00:00Z"}}}]}]}},{"id":null,"name":"php","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"PHP","value":"php","preferredOs":"linux","majorVersions":[{"displayText":"PHP
- 8","value":"8","minorVersions":[{"displayText":"PHP 8.3","value":"8.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.3"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-11-23T00:00:00Z"}}},{"displayText":"PHP
- 8.2","value":"8.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.2"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-12-08T00:00:00Z"}}},{"displayText":"PHP
- 8.1","value":"8.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.1","isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.1"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-11-26T00:00:00Z"}}},{"displayText":"PHP
+ 8","value":"8","minorVersions":[{"displayText":"PHP 8.4","value":"8.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.4","remoteDebuggingSupported":false,"isHidden":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.4"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2028-12-31T00:00:00Z"}}},{"displayText":"PHP
+ 8.3","value":"8.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.3"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2027-12-31T00:00:00Z"}}},{"displayText":"PHP
+ 8.2","value":"8.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.2"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2026-12-31T00:00:00Z"}}},{"displayText":"PHP
+ 8.1","value":"8.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.1","isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.1"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2025-12-31T00:00:00Z"}}},{"displayText":"PHP
8.0","value":"8.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.0","isHidden":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.0"},"supportedFeatures":{"disableSsh":true},"endOfLifeDate":"2023-11-26T00:00:00Z"}}}]},{"displayText":"PHP
7","value":"7","minorVersions":[{"displayText":"PHP 7.4","value":"7.4","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"7.4","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.4","notSupportedInCreates":true},"isDeprecated":true,"endOfLifeDate":"2022-11-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"PHP|7.4","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.4","notSupportedInCreates":true},"isDeprecated":true,"endOfLifeDate":"2022-11-30T00:00:00Z"}}},{"displayText":"PHP
7.3","value":"7.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|7.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.3","notSupportedInCreates":true},"endOfLifeDate":"2021-12-06T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"7.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.3","notSupportedInCreates":true},"endOfLifeDate":"2021-12-06T00:00:00Z"}}},{"displayText":"PHP
@@ -453,14 +458,20 @@ interactions:
2.3.8","value":"2.3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"RUBY|2.3.8","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2019-03-31T00:00:00Z"}}},{"displayText":"Ruby
2.3.3","value":"2.3.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"RUBY|2.3.3","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2019-03-31T00:00:00Z"}}}]}]}},{"id":null,"name":"java","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Java","value":"java","preferredOs":"linux","majorVersions":[{"displayText":"Java
21","value":"21","minorVersions":[{"displayText":"Java 21","value":"21.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"21","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}},{"displayText":"Java
+ 21.0.4","value":"21.0.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}},{"displayText":"Java
+ 21.0.3","value":"21.0.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}},{"displayText":"Java
21.0.1","value":"21.0.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"21.0.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"21"},"endOfLifeDate":"2028-09-01T00:00:00Z"}}}]},{"displayText":"Java
17","value":"17","minorVersions":[{"displayText":"Java 17","value":"17.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 17.0.12","value":"17.0.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 17.0.11","value":"17.0.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.9","value":"17.0.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.4","value":"17.0.4","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.4","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.3","value":"17.0.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.2","value":"17.0.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
17.0.1","value":"17.0.1","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
11","value":"11","minorVersions":[{"displayText":"Java 11","value":"11.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 11.0.24","value":"11.0.21","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
+ 11.0.23","value":"11.0.21","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.21","value":"11.0.21","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.21","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.16","value":"11.0.16","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.16","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.15","value":"11.0.15","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.15","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
@@ -475,31 +486,32 @@ interactions:
11.0.5","value":"11.0.5","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.5_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.3","value":"11.0.3","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11.0.3_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java
11.0.2","value":"11.0.2","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11.0.2_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}}]},{"displayText":"Java
- 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_392","value":"8.0.392","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_392","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_345","value":"8.0.345","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_345","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_332","value":"8.0.332","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_332","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_322","value":"8.0.322","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_322","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_312","value":"8.0.312","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_312","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_302","value":"8.0.302","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_302","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_292","value":"8.0.292","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_292","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_282","value":"8.0.282","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_282","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_275","value":"8.0.275","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_265","value":"8.0.265","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_265","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_252","value":"8.0.252","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_252","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_242","value":"8.0.242","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_242","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_232","value":"8.0.232","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_232_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_212","value":"8.0.212","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_212_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_202","value":"8.0.202","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_202_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 8","value":"8","minorVersions":[{"displayText":"Java 8","value":"8.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_422","value":"8.0.422","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_392","value":"8.0.392","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_392","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_345","value":"8.0.345","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_345","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_332","value":"8.0.332","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_332","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_322","value":"8.0.322","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_322","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_312","value":"8.0.312","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_312","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_302","value":"8.0.302","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_302","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_292","value":"8.0.292","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_292","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_282","value":"8.0.282","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_282","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_275","value":"8.0.275","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_265","value":"8.0.265","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_265","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_252","value":"8.0.252","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_252","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_242","value":"8.0.242","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_242","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_232","value":"8.0.232","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_232_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_212","value":"8.0.212","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_212_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_202","value":"8.0.202","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_202_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_202 (Oracle)","value":"8.0.202 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_202","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_181","value":"8.0.181","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_181_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_181","value":"8.0.181","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_181_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_181 (Oracle)","value":"8.0.181 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_181","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_172","value":"8.0.172","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_172_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_172","value":"8.0.172","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_172_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_172 (Oracle)","value":"8.0.172 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_172","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_144","value":"8.0.144","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_144","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_144","value":"8.0.144","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_144","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_111 (Oracle)","value":"8.0.111 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_111","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
- 1.8.0_102","value":"8.0.102","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_102","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
- 1.8.0_92","value":"8.0.92","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_92","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2025-03-01T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_102","value":"8.0.102","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_102","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
+ 1.8.0_92","value":"8.0.92","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_92","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"},"endOfLifeDate":"2026-11-30T00:00:00Z"}}},{"displayText":"Java
1.8.0_73 (Oracle)","value":"8.0.73 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_73","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
1.8.0_60 (Oracle)","value":"8.0.60 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_60","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}},{"displayText":"Java
1.8.0_25 (Oracle)","value":"8.0.25 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.8.0_25","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8"}}}}]},{"displayText":"Java
@@ -516,12 +528,18 @@ interactions:
Containers","value":"javacontainers","majorVersions":[{"displayText":"Java
SE (Embedded Web Server)","value":"javase","minorVersions":[{"displayText":"Java
SE (Embedded Web Server)","value":"SE","stackSettings":{"windowsContainerSettings":{"javaContainer":"JAVA","javaContainerVersion":"SE","isAutoUpdate":true},"linuxContainerSettings":{"java21Runtime":"JAVA|21-java21","java17Runtime":"JAVA|17-java17","java11Runtime":"JAVA|11-java11","java8Runtime":"JAVA|8-jre8","isAutoUpdate":true}}},{"displayText":"Java
+ SE 21.0.4","value":"21.0.4","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.4"}}},{"displayText":"Java
+ SE 21.0.3","value":"21.0.3","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.3"}}},{"displayText":"Java
SE 21.0.1","value":"21.0.1","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.1"}}},{"displayText":"Java
+ SE 17.0.12","value":"17.0.12","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.12"}}},{"displayText":"Java
+ SE 17.0.11","value":"17.0.11","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.11"}}},{"displayText":"Java
SE 17.0.9","value":"17.0.9","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.9"}}},{"displayText":"Java
SE 17.0.4","value":"17.0.4","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.4"}}},{"displayText":"Java
SE 17.0.3","value":"17.0.3","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.3"}}},{"displayText":"Java
SE 17.0.2","value":"17.0.2","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.2"}}},{"displayText":"Java
SE 17.0.1","value":"17.0.1","stackSettings":{"linuxContainerSettings":{"java17Runtime":"JAVA|17.0.1"}}},{"displayText":"Java
+ SE 11.0.24","value":"11.0.24","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.24"}}},{"displayText":"Java
+ SE 11.0.23","value":"11.0.23","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.23"}}},{"displayText":"Java
SE 11.0.21","value":"11.0.21","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.21"}}},{"displayText":"Java
SE 11.0.16","value":"11.0.16","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.16"}}},{"displayText":"Java
SE 11.0.15","value":"11.0.15","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.15"}}},{"displayText":"Java
@@ -533,6 +551,8 @@ interactions:
SE 11.0.7","value":"11.0.7","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.7"}}},{"displayText":"Java
SE 11.0.6","value":"11.0.6","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.6"}}},{"displayText":"Java
SE 11.0.5","value":"11.0.5","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.5"}}},{"displayText":"Java
+ SE 8u422","value":"1.8.422","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u422"}}},{"displayText":"Java
+ SE 8u412","value":"1.8.412","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u412"}}},{"displayText":"Java
SE 8u392","value":"1.8.392","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u392"}}},{"displayText":"Java
SE 8u345","value":"1.8.345","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u345"}}},{"displayText":"Java
SE 8u332","value":"1.8.332","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u332"}}},{"displayText":"Java
@@ -544,11 +564,19 @@ interactions:
SE 8u252","value":"1.8.252","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u252"}}},{"displayText":"Java
SE 8u242","value":"1.8.242","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u242"}}},{"displayText":"Java
SE 8u232","value":"1.8.232","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u232"}}}]},{"displayText":"Red
- Hat JBoss EAP 8","value":"jbosseap","minorVersions":[{"displayText":"Red Hat
- JBoss EAP 8","value":"8","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8-java11","java17Runtime":"JBOSSEAP|8-java17","isAutoUpdate":true}}},{"displayText":"Red
- Hat JBoss EAP 8 update 1","value":"8.0.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.1-java11","java17Runtime":"JBOSSEAP|8.0.1-java17"}}}]},{"displayText":"Red
+ Hat JBoss EAP 8","value":"jbosseap8.0","minorVersions":[{"displayText":"Red
+ Hat JBoss EAP 8","value":"8","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8-java11","java17Runtime":"JBOSSEAP|8-java17","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 8.0 update 2.1","value":"8.0.2.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.2.1-java11","java17Runtime":"JBOSSEAP|8.0.2.1-java17"}}},{"displayText":"Red
+ Hat JBoss EAP 8.0 update 1","value":"8.0.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.1-java11","java17Runtime":"JBOSSEAP|8.0.1-java17"}}}]},{"displayText":"Red
+ Hat JBoss EAP 8 BYO License","value":"jbosseap8.0_byol","minorVersions":[{"displayText":"Red
+ Hat JBoss EAP 8 BYO License","value":"8","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8-java11_byol","java17Runtime":"JBOSSEAP|8-java17_byol","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 8 update 1 BYO License","value":"8.0.1","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.1-java11_byol","java17Runtime":"JBOSSEAP|8.0.1-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 8.0 update 2.1 BYO License","value":"8.0.2","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JBOSSEAP|8.0.2-java11_byol","java17Runtime":"JBOSSEAP|8.0.2-java17_byol"}}}]},{"displayText":"Red
Hat JBoss EAP 7","value":"jbosseap","minorVersions":[{"displayText":"Red Hat
JBoss EAP 7","value":"7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7-java8","java11Runtime":"JBOSSEAP|7-java11","java17Runtime":"JBOSSEAP|7-java17","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.18","value":"7.4.18","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.18-java8","java11Runtime":"JBOSSEAP|7.4.18-java11","java17Runtime":"JBOSSEAP|7.4.18-java17"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.17","value":"7.4.17","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.17-java8","java11Runtime":"JBOSSEAP|7.4.17-java11","java17Runtime":"JBOSSEAP|7.4.17-java17"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.16","value":"7.4.16","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.16-java8","java11Runtime":"JBOSSEAP|7.4.16-java11","java17Runtime":"JBOSSEAP|7.4.16-java17"}}},{"displayText":"Red
Hat JBoss EAP 7.4.13","value":"7.4.13","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.13-java8","java11Runtime":"JBOSSEAP|7.4.13-java11","java17Runtime":"JBOSSEAP|7.4.13-java17"}}},{"displayText":"Red
Hat JBoss EAP 7.4.7","value":"7.4.7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.7-java8","java11Runtime":"JBOSSEAP|7.4.7-java11","java17Runtime":"JBOSSEAP|7.4.7-java17"}}},{"displayText":"Red
Hat JBoss EAP 7.4.5","value":"7.4.5","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.5-java8","java11Runtime":"JBOSSEAP|7.4.5-java11","java17Runtime":"JBOSSEAP|7.4.5-java17"}}},{"displayText":"Red
@@ -559,9 +587,22 @@ interactions:
Hat JBoss EAP 7.3.9","value":"7.3.9","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3.9-java8","java11Runtime":"JBOSSEAP|7.3.9-java11"}}},{"displayText":"Red
Hat JBoss EAP 7.3","value":"7.3","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3-java8","java11Runtime":"JBOSSEAP|7.3-java11","isAutoUpdate":true,"isHidden":true}}},{"displayText":"Red
Hat JBoss EAP 7.4","value":"7.4","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4-java8","java11Runtime":"JBOSSEAP|7.4-java11","isAutoUpdate":true,"isHidden":true}}},{"displayText":"JBoss
- EAP 7.2","value":"7.2.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.2-java8","isDeprecated":true}}}]},{"displayText":"Apache
+ EAP 7.2","value":"7.2.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.2-java8","isDeprecated":true}}}]},{"displayText":"Red
+ Hat JBoss EAP 7 BYO License","value":"jbosseap7_byol","minorVersions":[{"displayText":"Red
+ Hat JBoss EAP 7 BYO License","value":"7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7-java8_byol","java11Runtime":"JBOSSEAP|7-java11_byol","java17Runtime":"JBOSSEAP|7-java17_byol","isAutoUpdate":true}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.13 BYO License","value":"7.4.13","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.13-java8_byol","java11Runtime":"JBOSSEAP|7.4.13-java11_byol","java17Runtime":"JBOSSEAP|7.4.13-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.7 BYO License","value":"7.4.7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.7-java8_byol","java11Runtime":"JBOSSEAP|7.4.7-java11_byol","java17Runtime":"JBOSSEAP|7.4.7-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.5 BYO License","value":"7.4.5","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.5-java8_byol","java11Runtime":"JBOSSEAP|7.4.5-java11_byol","java17Runtime":"JBOSSEAP|7.4.5-java17_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.2 BYO License","value":"7.4.2","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.2-java8_byol","java11Runtime":"JBOSSEAP|7.4.2-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.1 BYO License","value":"7.4.1","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.1-java8_byol","java11Runtime":"JBOSSEAP|7.4.1-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.4.0 BYO License","value":"7.4.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.0-java8_byol","java11Runtime":"JBOSSEAP|7.4.0-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.3.10 BYO License","value":"7.3.10","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3.10-java8_byol","java11Runtime":"JBOSSEAP|7.3.10-java11_byol"}}},{"displayText":"Red
+ Hat JBoss EAP 7.3.9 BYO License","value":"7.3.9","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.3.9-java8_byol","java11Runtime":"JBOSSEAP|7.3.9-java11_byol"}}}]},{"displayText":"Apache
Tomcat 10.1","value":"tomcat10.1","minorVersions":[{"displayText":"Apache
Tomcat 10.1","value":"10.1","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1","isAutoUpdate":true},"linuxContainerSettings":{"java21Runtime":"TOMCAT|10.1-java21","java17Runtime":"TOMCAT|10.1-java17","java11Runtime":"TOMCAT|10.1-java11","isAutoUpdate":true}}},{"displayText":"Apache
+ Tomcat 10.1.28","value":"10.1.28","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.28","isHidden":true},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.28-java11","java17Runtime":"TOMCAT|10.1.28-java17","java21Runtime":"TOMCAT|10.1.28-java21"}}},{"displayText":"Apache
+ Tomcat 10.1.25","value":"10.1.25","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.25","isHidden":true},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.25-java11","java17Runtime":"TOMCAT|10.1.25-java17","java21Runtime":"TOMCAT|10.1.25-java21"}}},{"displayText":"Apache
+ Tomcat 10.1.23","value":"10.1.23","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.23","isHidden":true},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.23-java11","java17Runtime":"TOMCAT|10.1.23-java17","java21Runtime":"TOMCAT|10.1.23-java21"}}},{"displayText":"Apache
Tomcat 10.1.16","value":"10.1.16","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.1.16"},"linuxContainerSettings":{"java11Runtime":"TOMCAT|10.1.16-java11","java17Runtime":"TOMCAT|10.1.16-java17","java21Runtime":"TOMCAT|10.1.16-java21"}}}]},{"displayText":"Apache
Tomcat 10.0","value":"tomcat10.0","minorVersions":[{"displayText":"Apache
Tomcat 10.0","value":"10.0","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0","isAutoUpdate":true,"endOfLifeDate":"2022-10-31T00:00:00Z"},"linuxContainerSettings":{"java17Runtime":"TOMCAT|10.0-java17","java11Runtime":"TOMCAT|10.0-java11","java8Runtime":"TOMCAT|10.0-jre8","isAutoUpdate":true,"endOfLifeDate":"2022-10-31T00:00:00Z"}}},{"displayText":"Apache
@@ -572,6 +613,9 @@ interactions:
Tomcat 10.0.12","value":"10.0.12","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.12","endOfLifeDate":"2022-10-31T00:00:00Z"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.12-java8","java11Runtime":"TOMCAT|10.0.12-java11","java17Runtime":"TOMCAT|10.0.12-java17","endOfLifeDate":"2022-10-31T00:00:00Z"}}}]},{"displayText":"Apache
Tomcat 9.0","value":"tomcat9.0","minorVersions":[{"displayText":"Apache Tomcat
9.0","value":"9.0","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0","isAutoUpdate":true},"linuxContainerSettings":{"java21Runtime":"TOMCAT|9.0-java21","java17Runtime":"TOMCAT|9.0-java17","java11Runtime":"TOMCAT|9.0-java11","java8Runtime":"TOMCAT|9.0-jre8","isAutoUpdate":true}}},{"displayText":"Apache
+ Tomcat 9.0.93","value":"9.0.93","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.93","isHidden":true},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.93-java8","java11Runtime":"TOMCAT|9.0.93-java11","java17Runtime":"TOMCAT|9.0.93-java17","java21Runtime":"TOMCAT|9.0.93-java21"}}},{"displayText":"Apache
+ Tomcat 9.0.90","value":"9.0.90","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.90","isHidden":true},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.90-java8","java11Runtime":"TOMCAT|9.0.90-java11","java17Runtime":"TOMCAT|9.0.90-java17","java21Runtime":"TOMCAT|9.0.90-java21"}}},{"displayText":"Apache
+ Tomcat 9.0.88","value":"9.0.88","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.88","isHidden":true},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.88-java8","java11Runtime":"TOMCAT|9.0.88-java11","java17Runtime":"TOMCAT|9.0.88-java17","java21Runtime":"TOMCAT|9.0.88-java21"}}},{"displayText":"Apache
Tomcat 9.0.83","value":"9.0.83","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.83"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.83-java8","java11Runtime":"TOMCAT|9.0.83-java11","java17Runtime":"TOMCAT|9.0.83-java17","java21Runtime":"TOMCAT|9.0.83-java21"}}},{"displayText":"Apache
Tomcat 9.0.65","value":"9.0.65","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.65"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.65-java8","java11Runtime":"TOMCAT|9.0.65-java11","java17Runtime":"TOMCAT|9.0.65-java17"}}},{"displayText":"Apache
Tomcat 9.0.63","value":"9.0.63","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.63"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.63-java8","java11Runtime":"TOMCAT|9.0.63-java11","java17Runtime":"TOMCAT|9.0.63-java17"}}},{"displayText":"Apache
@@ -593,6 +637,7 @@ interactions:
Tomcat 9.0.0","value":"9.0.0","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.0"}}}]},{"displayText":"Apache
Tomcat 8.5","value":"tomcat8.5","minorVersions":[{"displayText":"Apache Tomcat
8.5","value":"8.5","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5","isAutoUpdate":true,"endOfLifeDate":"2024-03-31T00:00:00Z"},"linuxContainerSettings":{"java11Runtime":"TOMCAT|8.5-java11","java8Runtime":"TOMCAT|8.5-jre8","isAutoUpdate":true,"endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
+ Tomcat 8.5.100","value":"8.5.100","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.100-java8","java11Runtime":"TOMCAT|8.5.100-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.100","endOfLifeDate":"2024-03-31T00:00:00Z","isHidden":true}}},{"displayText":"Apache
Tomcat 8.5.96","value":"8.5.96","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.96-java8","java11Runtime":"TOMCAT|8.5.96-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.96","endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
Tomcat 8.5.82","value":"8.5.82","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.82-java8","java11Runtime":"TOMCAT|8.5.82-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.82","endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
Tomcat 8.5.79","value":"8.5.79","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.79-java8","java11Runtime":"TOMCAT|8.5.79-java11","endOfLifeDate":"2024-03-31T00:00:00Z"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.79","endOfLifeDate":"2024-03-31T00:00:00Z"}}},{"displayText":"Apache
@@ -640,11 +685,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '88528'
+ - '99645'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:03 GMT
+ - Wed, 12 Mar 2025 08:58:47 GMT
expires:
- '-1'
pragma:
@@ -658,7 +703,7 @@ interactions:
x-content-type-options:
- nosniff
x-msedge-ref:
- - 'Ref A: 0B80A23445FD4CBFA24EAB93BCB08C47 Ref B: MAA201060513009 Ref C: 2024-08-29T02:39:02Z'
+ - 'Ref A: 18C98A9C049F443CAFE971CC5D69E6E6 Ref B: MAA201060515053 Ref C: 2025-03-12T08:58:48Z'
x-powered-by:
- ASP.NET
status:
@@ -686,26 +731,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/sites/clitestwebapp000004?api-version=2023-01-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/sites/clitestwebapp000004","name":"clitestwebapp000004","type":"Microsoft.Web/sites","kind":"app","location":"West
- US","properties":{"name":"clitestwebapp000004","state":"Running","hostNames":["clitestwebapp000004.azurewebsites.net"],"webSpace":"webapp_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-169.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/webapp_cross_rg2000002-WestUSwebspace/sites/clitestwebapp000004","repositorySiteName":"clitestwebapp000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000004.azurewebsites.net","clitestwebapp000004.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":"clitestwebapp000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2024-08-29T02:39:08.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
+ US","properties":{"name":"clitestwebapp000004","state":"Running","hostNames":["clitestwebapp000004.azurewebsites.net"],"webSpace":"webapp_cross_rg2000002-WestUSwebspace","selfLink":"https://waws-prod-bay-223.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/webapp_cross_rg2000002-WestUSwebspace/sites/clitestwebapp000004","repositorySiteName":"clitestwebapp000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"siteScopedCertificatesEnabled":false,"afdEnabled":false,"enabledHostNames":["clitestwebapp000004.azurewebsites.net","clitestwebapp000004.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":"clitestwebapp000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"virtualIPv6":null,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/serverfarms/clitestplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2025-03-12T08:58:54.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":false,"outboundVnetRouting":{"allTraffic":false,"applicationTraffic":false,"contentShareTraffic":false,"imagePullTraffic":false,"backupRestoreTraffic":false},"siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"windowsConfiguredStacks":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,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"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":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
all","description":"Allow all access"}],"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":2147483647,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"elasticWebAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.52","possibleInboundIpAddresses":"40.112.243.52","ftpUsername":"clitestwebapp000004\\$clitestwebapp000004","ftpsHostName":"ftps://waws-prod-bay-169.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.118.186.137,13.91.222.184,13.91.220.11,40.78.46.223,13.91.220.212,13.91.220.232,40.112.243.52","possibleOutboundIpAddresses":"40.118.186.137,13.91.222.184,13.91.220.11,40.78.46.223,13.91.220.212,13.91.220.232,13.64.56.213,13.91.221.50,13.91.223.191,40.78.40.124,13.91.218.228,13.91.219.84,13.91.219.115,13.91.219.125,13.91.219.197,13.91.219.250,13.91.219.253,104.42.127.227,13.91.223.12,13.91.217.83,13.91.217.141,13.64.63.13,40.85.157.232,13.91.221.86,13.91.221.222,40.118.185.193,104.210.49.140,13.91.219.111,13.91.216.202,13.91.221.1,40.112.243.52","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-169","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"webapp_cross_rg2000002","defaultHostName":"clitestwebapp000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"scmMinTlsCipherSuite":null,"supportedTlsCipherSuites":null,"scmSupportedTlsCipherSuites":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"elasticWebAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null,"storageType":null,"sitePrivateLinkHostEnabled":null,"clusteringEnabled":false},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientAffinityProxyEnabled":false,"blockPathTraversal":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"workloadProfileName":null,"resourceConfig":null,"inboundIpAddress":"40.112.243.107","possibleInboundIpAddresses":"40.112.243.107","ftpUsername":"clitestwebapp000004\\$clitestwebapp000004","ftpsHostName":"ftps://waws-prod-bay-223.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.66.38.156,20.253.192.150,20.253.192.214,20.253.192.68,20.245.167.222,20.237.236.221,40.112.243.107","possibleOutboundIpAddresses":"20.66.38.156,20.253.192.150,20.253.192.214,20.253.192.68,20.245.167.222,20.237.236.221,104.209.1.86,20.245.167.166,20.237.238.86,20.237.238.182,20.253.194.143,20.237.199.64,20.253.135.107,20.245.168.61,20.245.171.12,20.253.128.204,20.66.39.179,20.253.128.252,20.253.194.226,20.228.120.185,20.253.194.255,20.253.195.13,20.253.195.67,20.237.239.11,20.237.198.135,20.228.127.198,20.228.127.190,20.237.231.73,20.245.163.76,20.237.158.144,20.66.32.118,40.112.243.107","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-223","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"webapp_cross_rg2000002","defaultHostName":"clitestwebapp000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"functionsRuntimeAdminIsolationEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs,AppServiceAuthenticationLogs","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","autoGeneratedDomainNameLabelScope":null,"defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '7663'
+ - '7707'
content-type:
- application/json
date:
- - Thu, 29 Aug 2024 02:39:28 GMT
+ - Wed, 12 Mar 2025 08:59:14 GMT
etag:
- - '"1DAF9BC9F8B6C15"'
+ - '"1DB932CFBE6194B"'
expires:
- '-1'
pragma:
@@ -721,7 +766,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-resource-requests:
- '499'
x-msedge-ref:
- - 'Ref A: BA0D992A36D64C319EA3730A454DC019 Ref B: MAA201060515051 Ref C: 2024-08-29T02:39:04Z'
+ - 'Ref A: FD9FC877BD6C4A62BC4BD964A32907F6 Ref B: MAA201060516033 Ref C: 2025-03-12T08:58:48Z'
x-powered-by:
- ASP.NET
status:
@@ -745,7 +790,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.12.5 (Windows-11-10.0.22631-SP0)
+ - AZURECLI/2.70.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp_cross_rg2000002/providers/Microsoft.Web/sites/clitestwebapp000004/publishxml?api-version=2023-01-01
response:
@@ -756,7 +801,7 @@ interactions:
destinationAppUrl="http://clitestwebapp000004.azurewebsites.net" SQLServerDBConnectionString="REDACTED"
mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="https://portal.azure.com"
webSystem="WebSites">