From 6374f4cd147a359c92236b7a34b803e383ec59fb Mon Sep 17 00:00:00 2001 From: AllyW Date: Mon, 30 Oct 2023 15:00:33 +0800 Subject: [PATCH 1/3] add connection string into app settings --- src/application-insights/azext_applicationinsights/custom.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/application-insights/azext_applicationinsights/custom.py b/src/application-insights/azext_applicationinsights/custom.py index 1f8dfb620e9..e30cf8582d0 100644 --- a/src/application-insights/azext_applicationinsights/custom.py +++ b/src/application-insights/azext_applicationinsights/custom.py @@ -165,6 +165,8 @@ def connect_webapp(cmd, client, resource_group_name, application, app_service, e raise InvalidArgumentValueError(f"App Insights {application} under resource group {resource_group_name} was not found.") settings = [f"APPINSIGHTS_INSTRUMENTATIONKEY={app_insights.instrumentation_key}"] + if app_insights.connection_string is not None: + settings.append(f"APPINSIGHTS_CONNECTIONSTRING={app_insights.connection_string}") if enable_profiler is True: settings.append("APPINSIGHTS_PROFILERFEATURE_VERSION=1.0.0") elif enable_profiler is False: From c35d971e457274c482362a1b5eb50ba37fc62882 Mon Sep 17 00:00:00 2001 From: AllyW Date: Mon, 18 Mar 2024 17:04:27 +0800 Subject: [PATCH 2/3] add test --- src/application-insights/HISTORY.rst | 4 + .../azext_applicationinsights/custom.py | 3 + .../test_component_with_linked_storage.yaml | 133 +-- .../test_component_with_linked_workspace.yaml | 617 +++++------ ..._component_with_public_network_access.yaml | 334 +++--- .../recordings/test_connect_function.yaml | 956 +++++------------ ...onnect_function_cross_resource_groups.yaml | 964 +++++------------- .../recordings/test_connect_webapp.yaml | 431 ++++---- .../latest/test_applicationinsights_mgmt.py | 20 +- src/application-insights/setup.py | 2 +- 10 files changed, 1292 insertions(+), 2172 deletions(-) diff --git a/src/application-insights/HISTORY.rst b/src/application-insights/HISTORY.rst index 8381237028b..2ceabc9a04e 100644 --- a/src/application-insights/HISTORY.rst +++ b/src/application-insights/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.2.1 +++++++++++++++++++ +* `az monitor app-insights component connect-webapp/connect-function`: Add `connection_string` auto setting for webapp/function. + 1.2.0 ++++++++++++++++++ * `az monitor app-insights`: Add new command group `workbook` to support managing workbook. diff --git a/src/application-insights/azext_applicationinsights/custom.py b/src/application-insights/azext_applicationinsights/custom.py index e30cf8582d0..cc2677db168 100644 --- a/src/application-insights/azext_applicationinsights/custom.py +++ b/src/application-insights/azext_applicationinsights/custom.py @@ -193,6 +193,9 @@ def connect_function(cmd, client, resource_group_name, application, app_service) settings = [f"APPINSIGHTS_INSTRUMENTATIONKEY={app_insights.instrumentation_key}"] + if app_insights.connection_string is not None: + settings.append(f"APPINSIGHTS_CONNECTIONSTRING={app_insights.connection_string}") + if is_valid_resource_id(app_service): resource_id = parse_resource_id(app_service) app_service = resource_id['name'] diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml index 1faab75ec06..4db0c9aecbf 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml +++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml @@ -13,31 +13,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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_component_with_linked_storage","date":"2023-12-22T01:35:04Z","module":"application-insights"},"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_component_with_linked_storage","date":"2024-03-18T08:54:56Z","module":"application-insights","DateCreated":"2024-03-18T08:55:04Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '386' + - '457' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:07 GMT + - Mon, 18 Mar 2024 08:55:56 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 58B4AA068E284E1B8C0B1AD3B056D297 Ref B: MAA201060516011 Ref C: 2024-03-18T08:55:57Z' status: code: 200 message: OK @@ -61,12 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"8147b1ec-c566-4c9b-addf-2c1e3333124c","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:36:11.2118509Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:36:11.2118509Z","modifiedDate":"2023-12-22T01:36:11.2118509Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a052bf3-0000-0700-0000-6584e80b0000\""}' + string: '{"properties":{"customerId":"bc02f5eb-5863-4dd9-852a-9f2924a28773","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:55:59.1824857Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:55:59.1824857Z","modifiedDate":"2024-03-18T08:55:59.1824857Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99007c7d-0000-0700-0000-65f8019f0000\""}' headers: access-control-allow-origin: - '*' @@ -79,21 +81,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:11 GMT + - Mon, 18 Mar 2024 08:55:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2022-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2023-09-01 pragma: - no-cache request-context: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: DB5AED6B80EA475BB7460C6ABF126764 Ref B: MAA201060514047 Ref C: 2024-03-18T08:55:57Z' x-powered-by: - ASP.NET status: @@ -113,12 +119,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"8147b1ec-c566-4c9b-addf-2c1e3333124c","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:36:11.2118509Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:36:11.2118509Z","modifiedDate":"2023-12-22T01:36:11.2118509Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a052bf3-0000-0700-0000-6584e80b0000\""}' + string: '{"properties":{"customerId":"bc02f5eb-5863-4dd9-852a-9f2924a28773","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:55:59.1824857Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:55:59.1824857Z","modifiedDate":"2024-03-18T08:55:59.1824857Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99007c7d-0000-0700-0000-65f8019f0000\""}' headers: access-control-allow-origin: - '*' @@ -131,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:11 GMT + - Mon, 18 Mar 2024 08:56:00 GMT expires: - '-1' pragma: @@ -140,12 +146,12 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 107FE2A7B0234A15B37D0C5B54BC4C67 Ref B: MAA201060514047 Ref C: 2024-03-18T08:55:59Z' x-powered-by: - ASP.NET status: @@ -172,8 +178,7 @@ interactions: ParameterSetName: - --app --location --kind -g --workspace --application-type User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -181,13 +186,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82e0093-0000-0200-0000-6584e8110000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0057d1-0000-0200-0000-65f801a40000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 433cb75a-de33-4c64-8137-a020126c268f\",\r\n \"Application_Type\": \"web\"\ + 435c4d82-8638-42ff-abeb-8a0f3a712b0f\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"1d7fb990-559e-447f-b853-c570065c65ca\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=1d7fb990-559e-447f-b853-c570065c65ca;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-12-22T01:36:17.0672261+00:00\"\ + ,\r\n \"InstrumentationKey\": \"92fb047e-7192-4f9b-a68c-1a9128b8b00c\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=92fb047e-7192-4f9b-a68c-1a9128b8b00c;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:56:04.4723002+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000004\"\ @@ -204,25 +209,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:16 GMT + - Mon, 18 Mar 2024 08:56:04 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 8EA5A166BD084A69A1E41F8F77587613 Ref B: MAA201060516033 Ref C: 2024-03-18T08:56:01Z' x-powered-by: - ASP.NET status: @@ -246,7 +249,7 @@ interactions: ParameterSetName: - --app -g -s User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview response: @@ -265,25 +268,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:20 GMT + - Mon, 18 Mar 2024 08:56:08 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: A89771159A1E423F858BEE1E5589113F Ref B: MAA201060513037 Ref C: 2024-03-18T08:56:06Z' x-powered-by: - ASP.NET status: @@ -303,7 +304,7 @@ interactions: ParameterSetName: - --app -g User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview response: @@ -322,23 +323,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:22 GMT + - Mon, 18 Mar 2024 08:56:10 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DF131BFE8DCC4FDEA9AEA83ED43DBA6D Ref B: MAA201060513023 Ref C: 2024-03-18T08:56:09Z' x-powered-by: - ASP.NET status: @@ -362,7 +361,7 @@ interactions: ParameterSetName: - --app -g -s User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview response: @@ -381,25 +380,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:24 GMT + - Mon, 18 Mar 2024 08:56:15 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: B03A56BED8F544B9AD9B09D91A80296E Ref B: MAA201060516049 Ref C: 2024-03-18T08:56:12Z' x-powered-by: - ASP.NET status: @@ -421,7 +418,7 @@ interactions: ParameterSetName: - --app -g -y User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview response: @@ -435,21 +432,23 @@ interactions: content-length: - '0' date: - - Fri, 22 Dec 2023 01:36:30 GMT + - Mon, 18 Mar 2024 08:56:17 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 4925A631A3E948189AE08B521D11C061 Ref B: MAA201060516019 Ref C: 2024-03-18T08:56:15Z' x-powered-by: - ASP.NET status: @@ -469,7 +468,7 @@ interactions: ParameterSetName: - --app -g User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview response: @@ -485,19 +484,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:36:34 GMT + - Mon, 18 Mar 2024 08:56:19 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 4706C4D6856148CC868AA1A775D791B2 Ref B: MAA201060516023 Ref C: 2024-03-18T08:56:18Z' x-powered-by: - ASP.NET status: diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml index 5bde1efcdb2..3c5c30e094e 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml +++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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_component_with_linked_workspace","date":"2023-08-23T01:56:37Z","module":"application-insights"},"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_component_with_linked_workspace","date":"2024-03-18T08:44:16Z","module":"application-insights"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,23 +27,26 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:43 GMT + - Mon, 18 Mar 2024 08:44:24 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0A2802C5C557402182653B2C3596C8A6 Ref B: MAA201060515047 Ref C: 2024-03-18T08:44:24Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"retentionInDays": 30, "sku": {"name": - "PerGB2018"}}}' + body: '{"location": "westus", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled", "retentionInDays": 30, + "sku": {"name": "PerGB2018"}}}' headers: Accept: - application/json @@ -54,45 +57,49 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '179' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"02f3949f-7d9b-4f11-bdc3-efeb91d02346","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:49.2083868Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:49.2083868Z","modifiedDate":"2023-08-23T01:56:49.2083868Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:26.8217771Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99005e35-0000-0700-0000-65f7feea0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2021-12-01-preview + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '833' + - '883' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:49 GMT + - Mon, 18 Mar 2024 08:44:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 pragma: - no-cache request-context: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F1D5B8A313BD4B849E5E9D9339E52CEF Ref B: MAA201060513031 Ref C: 2024-03-18T08:44:25Z' x-powered-by: - ASP.NET status: @@ -112,25 +119,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"02f3949f-7d9b-4f11-bdc3-efeb91d02346","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:49.2083868Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:49.2083868Z","modifiedDate":"2023-08-23T01:56:49.2083868Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:26.8217771Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99005e35-0000-0700-0000-65f7feea0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2021-12-01-preview + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '833' + - '883' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:49 GMT + - Mon, 18 Mar 2024 08:44:28 GMT expires: - '-1' pragma: @@ -139,12 +146,12 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 27A8360BED0647D091115BD54CE17ECB Ref B: MAA201060513031 Ref C: 2024-03-18T08:44:27Z' x-powered-by: - ASP.NET status: @@ -164,39 +171,40 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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_component_with_linked_workspace","date":"2023-08-23T01:56:37Z","module":"application-insights"},"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_component_with_linked_workspace","date":"2024-03-18T08:44:16Z","module":"application-insights","DateCreated":"2024-03-18T08:44:24Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache - connection: - - close content-length: - - '388' + - '459' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:50 GMT + - Mon, 18 Mar 2024 08:44:28 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B4B1EE265F27442C81E21626B88A512D Ref B: MAA201060516049 Ref C: 2024-03-18T08:44:29Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"retentionInDays": 30, "sku": {"name": - "PerGB2018"}}}' + body: '{"location": "westus", "properties": {"publicNetworkAccessForIngestion": + "Enabled", "publicNetworkAccessForQuery": "Enabled", "retentionInDays": 30, + "sku": {"name": "PerGB2018"}}}' headers: Accept: - application/json @@ -207,45 +215,49 @@ interactions: Connection: - keep-alive Content-Length: - - '91' + - '179' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"b854a0cf-da15-4169-9eab-ef20af8d345a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:56.2292427Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:56.2292427Z","modifiedDate":"2023-08-23T01:56:56.2292427Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"f46c4c5b-88a9-4080-bf74-9696004fb2b7","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:31.288892Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:31.288892Z","modifiedDate":"2024-03-18T08:44:31.288892Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99001036-0000-0700-0000-65f7feef0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2021-12-01-preview + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '833' + - '880' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:56 GMT + - Mon, 18 Mar 2024 08:44:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 pragma: - no-cache request-context: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 3BBDFA7A63274205819707D755B8BD32 Ref B: MAA201060516021 Ref C: 2024-03-18T08:44:29Z' x-powered-by: - ASP.NET status: @@ -265,25 +277,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"b854a0cf-da15-4169-9eab-ef20af8d345a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:56.2292427Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:56.2292427Z","modifiedDate":"2023-08-23T01:56:56.2292427Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"f46c4c5b-88a9-4080-bf74-9696004fb2b7","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:31.288892Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:31.288892Z","modifiedDate":"2024-03-18T08:44:31.288892Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99001036-0000-0700-0000-65f7feef0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2021-12-01-preview + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '833' + - '880' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:56 GMT + - Mon, 18 Mar 2024 08:44:32 GMT expires: - '-1' pragma: @@ -292,12 +304,12 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DC6EFFE463F440D7A34AD8FA646F73A2 Ref B: MAA201060516021 Ref C: 2024-03-18T08:44:31Z' x-powered-by: - ASP.NET status: @@ -323,8 +335,7 @@ interactions: ParameterSetName: - --app --location --kind -g --application-type User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2018-05-01-preview response: @@ -332,13 +343,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100060df-0000-0200-0000-64e567700000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d008ebf-0000-0200-0000-65f7fef40000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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\"\ @@ -354,25 +365,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:05 GMT + - Mon, 18 Mar 2024 08:44:36 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: C257F5E75DD946C9B0EB2BF4B1DEF513 Ref B: MAA201060513011 Ref C: 2024-03-18T08:44:33Z' x-powered-by: - ASP.NET status: @@ -392,8 +401,7 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -401,13 +409,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100060df-0000-0200-0000-64e567700000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d008ebf-0000-0200-0000-65f7fef40000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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\"\ @@ -423,23 +431,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:06 GMT + - Mon, 18 Mar 2024 08:44:38 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FDAEACA3284D473786459DD17CE9756E Ref B: MAA201060514025 Ref C: 2024-03-18T08:44:37Z' x-powered-by: - ASP.NET status: @@ -459,7 +465,7 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.OperationalInsights?api-version=2022-09-01 response: @@ -473,7 +479,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"CrossResourceGroupResourceMove, + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2023-09-01","2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"querypacks","locations":["West Central US","East US","South Central US","North Europe","West Europe","Southeast Asia","West @@ -493,7 +500,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -502,7 +510,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/api","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2017-01-01-preview"],"capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/purge","locations":[],"apiVersions":["2022-10-01","2020-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/operations","locations":[],"apiVersions":["2022-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/api","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2017-01-01-preview"],"capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/purge","locations":[],"apiVersions":["2022-10-01","2020-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/operations","locations":[],"apiVersions":["2022-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -511,7 +520,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -520,7 +530,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia East","Australia Central","France Central","Korea Central","North Europe","Central US","East @@ -529,8 +540,8 @@ interactions: West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central","East - US 2 EUAP","Sweden South","Central US EUAP","Israel Central","Italy North"],"apiVersions":["2021-07-01-privatepreview","2021-03-01-privatepreview","2020-10-01"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-07-01-privatepreview","2021-03-01-privatepreview","2020-10-01"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia East","Australia Central","France Central","Korea Central","North Europe","Central US","East @@ -539,7 +550,8 @@ interactions: West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -548,7 +560,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia @@ -558,7 +571,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2023-09-01","2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -567,7 +581,8 @@ interactions: Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","South Africa West","Germany North","Poland Central","Israel Central","Italy + North"],"apiVersions":["2022-10-01","2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan @@ -578,27 +593,31 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["East + US 2 EUAP","East US","East US 2","North Central US","South Central US","West + US","West US 2"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '13850' + - '14247' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:06 GMT + - Mon, 18 Mar 2024 08:44:38 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B6A5259C2BF64B8AB28EE6858B996F94 Ref B: MAA201060514023 Ref C: 2024-03-18T08:44:39Z' status: code: 200 message: OK @@ -616,25 +635,25 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"02f3949f-7d9b-4f11-bdc3-efeb91d02346","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:49.2083868Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:49.2083868Z","modifiedDate":"2023-08-23T01:56:51.0784235Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:28.762289Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99009535-0000-0700-0000-65f7feec0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '834' + - '883' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:08 GMT + - Mon, 18 Mar 2024 08:44:39 GMT expires: - '-1' pragma: @@ -643,19 +662,19 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 43131CEB974949D0939A8D22BEE6C3C7 Ref B: MAA201060514023 Ref C: 2024-03-18T08:44:39Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"100060df-0000-0200-0000-64e567700000\"", + body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d008ebf-0000-0200-0000-65f7fef40000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002", "publicNetworkAccessForIngestion": "Enabled", "publicNetworkAccessForQuery": @@ -676,8 +695,7 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -685,17 +703,17 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"1000cadf-0000-0200-0000-64e567770000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00c8bf-0000-0200-0000-65f7fefa0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2023-08-23T01:57:10.6931326+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -709,25 +727,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:15 GMT + - Mon, 18 Mar 2024 08:44:47 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F37F6C0390F4400BA8321A9143D9BF13 Ref B: MAA201060515023 Ref C: 2024-03-18T08:44:41Z' x-powered-by: - ASP.NET status: @@ -747,8 +763,7 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -756,17 +771,17 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"1000cadf-0000-0200-0000-64e567770000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00c8bf-0000-0200-0000-65f7fefa0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2023-08-23T01:57:10.6931326+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -780,23 +795,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:17 GMT + - Mon, 18 Mar 2024 08:44:49 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0221E9CC82964562BB4B050AC71E54C7 Ref B: MAA201060514021 Ref C: 2024-03-18T08:44:48Z' x-powered-by: - ASP.NET status: @@ -816,7 +829,7 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.OperationalInsights?api-version=2022-09-01 response: @@ -830,7 +843,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"CrossResourceGroupResourceMove, + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2023-09-01","2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"querypacks","locations":["West Central US","East US","South Central US","North Europe","West Europe","Southeast Asia","West @@ -850,7 +864,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -859,7 +874,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/api","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2017-01-01-preview"],"capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/purge","locations":[],"apiVersions":["2022-10-01","2020-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/operations","locations":[],"apiVersions":["2022-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/api","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2017-01-01-preview"],"capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/purge","locations":[],"apiVersions":["2022-10-01","2020-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/operations","locations":[],"apiVersions":["2022-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -868,7 +884,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -877,7 +894,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia East","Australia Central","France Central","Korea Central","North Europe","Central US","East @@ -886,8 +904,8 @@ interactions: West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central","East - US 2 EUAP","Sweden South","Central US EUAP","Israel Central","Italy North"],"apiVersions":["2021-07-01-privatepreview","2021-03-01-privatepreview","2020-10-01"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-07-01-privatepreview","2021-03-01-privatepreview","2020-10-01"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia East","Australia Central","France Central","Korea Central","North Europe","Central US","East @@ -896,7 +914,8 @@ interactions: West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -905,7 +924,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia @@ -915,7 +935,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2023-09-01","2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -924,7 +945,8 @@ interactions: Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","South Africa West","Germany North","Poland Central","Israel Central","Italy + North"],"apiVersions":["2022-10-01","2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan @@ -935,27 +957,31 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["East + US 2 EUAP","East US","East US 2","North Central US","South Central US","West + US","West US 2"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '13850' + - '14247' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:18 GMT + - Mon, 18 Mar 2024 08:44:50 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 02C5D56533D0401589D5D57AC759089C Ref B: MAA201060514027 Ref C: 2024-03-18T08:44:50Z' status: code: 200 message: OK @@ -973,25 +999,25 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"b854a0cf-da15-4169-9eab-ef20af8d345a","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:56.2292427Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:56.2292427Z","modifiedDate":"2023-08-23T01:56:58.4208652Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"f46c4c5b-88a9-4080-bf74-9696004fb2b7","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:31.288892Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:31.288892Z","modifiedDate":"2024-03-18T08:44:32.9115796Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99004136-0000-0700-0000-65f7fef00000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '834' + - '882' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:20 GMT + - Mon, 18 Mar 2024 08:44:51 GMT expires: - '-1' pragma: @@ -1000,19 +1026,19 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1FBC9F6369AF4B52B2AAF20DBC98D20C Ref B: MAA201060514027 Ref C: 2024-03-18T08:44:50Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"1000cadf-0000-0200-0000-64e567770000\"", + body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d00c8bf-0000-0200-0000-65f7fefa0000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003", "publicNetworkAccessForIngestion": "Enabled", "publicNetworkAccessForQuery": @@ -1033,8 +1059,7 @@ interactions: ParameterSetName: - --app --workspace -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -1042,17 +1067,17 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100083e0-0000-0200-0000-64e567830000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d001ec0-0000-0200-0000-65f7ff050000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ - ,\r\n \"LaMigrationDate\": \"2023-08-23T01:57:10.6931326+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -1066,25 +1091,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:27 GMT + - Mon, 18 Mar 2024 08:44:58 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 0D2F8B706DE1451AB17D7E6E49B29314 Ref B: MAA201060516033 Ref C: 2024-03-18T08:44:51Z' x-powered-by: - ASP.NET status: @@ -1104,8 +1127,7 @@ interactions: ParameterSetName: - --app --workspace --kind -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -1113,17 +1135,17 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100083e0-0000-0200-0000-64e567830000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d001ec0-0000-0200-0000-65f7ff050000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ - ,\r\n \"LaMigrationDate\": \"2023-08-23T01:57:10.6931326+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -1137,23 +1159,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:28 GMT + - Mon, 18 Mar 2024 08:45:00 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B10937BAF70244F8860843F288B0D85B Ref B: MAA201060515027 Ref C: 2024-03-18T08:44:59Z' x-powered-by: - ASP.NET status: @@ -1173,7 +1193,7 @@ interactions: ParameterSetName: - --app --workspace --kind -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.OperationalInsights?api-version=2022-09-01 response: @@ -1187,7 +1207,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"CrossResourceGroupResourceMove, + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2023-09-01","2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"querypacks","locations":["West Central US","East US","South Central US","North Europe","West Europe","Southeast Asia","West @@ -1207,7 +1228,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2023-01-01-preview","2022-10-01","2022-09-01-privatepreview","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -1216,7 +1238,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/api","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2017-01-01-preview"],"capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/purge","locations":[],"apiVersions":["2022-10-01","2020-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/operations","locations":[],"apiVersions":["2022-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/api","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2017-01-01-preview"],"capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/purge","locations":[],"apiVersions":["2022-10-01","2020-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/operations","locations":[],"apiVersions":["2022-10-01","2020-08-01","2017-04-26-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -1225,7 +1248,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -1234,7 +1258,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia East","Australia Central","France Central","Korea Central","North Europe","Central US","East @@ -1243,8 +1268,8 @@ interactions: West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central","East - US 2 EUAP","Sweden South","Central US EUAP","Israel Central","Italy North"],"apiVersions":["2021-07-01-privatepreview","2021-03-01-privatepreview","2020-10-01"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-07-01-privatepreview","2021-03-01-privatepreview","2020-10-01"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia East","Australia Central","France Central","Korea Central","North Europe","Central US","East @@ -1253,7 +1278,8 @@ interactions: West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -1262,7 +1288,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia @@ -1272,7 +1299,8 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2022-10-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2023-09-01","2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia East","France Central","Korea Central","North Europe","Central US","East Asia","East @@ -1281,7 +1309,8 @@ interactions: Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden - Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","South Africa West","Germany North","Poland Central","Israel Central","Italy + North"],"apiVersions":["2022-10-01","2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan @@ -1292,27 +1321,31 @@ interactions: Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil Southeast","Norway East","Norway West","France South","South India","Korea South","Jio India Central","Jio India West","Qatar Central","Canada East","West - US 3","Sweden Central","South Africa West","Germany North","Poland Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North - Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 3","Sweden Central","South Africa West","Germany North","Poland Central","Israel + Central","Italy North"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["East + US 2 EUAP","East US","East US 2","North Central US","South Central US","West + US","West US 2"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '13850' + - '14247' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:29 GMT + - Mon, 18 Mar 2024 08:45:01 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E5A1ED1661B44014BCCE627A3AF6701A Ref B: MAA201060516029 Ref C: 2024-03-18T08:45:01Z' status: code: 200 message: OK @@ -1330,25 +1363,25 @@ interactions: ParameterSetName: - --app --workspace --kind -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"02f3949f-7d9b-4f11-bdc3-efeb91d02346","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-08-23T01:56:49.2083868Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-08-23T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-08-23T01:56:49.2083868Z","modifiedDate":"2023-08-23T01:56:51.0784235Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:28.762289Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99009535-0000-0700-0000-65f7feec0000\""}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2023-09-01 cache-control: - no-cache content-length: - - '834' + - '883' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:31 GMT + - Mon, 18 Mar 2024 08:45:02 GMT expires: - '-1' pragma: @@ -1357,19 +1390,19 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 474A65EB45B34ED1926A4954A1392DEF Ref B: MAA201060516029 Ref C: 2024-03-18T08:45:01Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "ios", "etag": "\"100083e0-0000-0200-0000-64e567830000\"", + body: '{"location": "westus", "tags": {}, "kind": "ios", "etag": "\"7d001ec0-0000-0200-0000-65f7ff050000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002", "publicNetworkAccessForIngestion": "Enabled", "publicNetworkAccessForQuery": @@ -1390,8 +1423,7 @@ interactions: ParameterSetName: - --app --workspace --kind -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -1399,17 +1431,17 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"1000f4e0-0000-0200-0000-64e5678c0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0079c0-0000-0200-0000-65f7ff100000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 9c77898d-6821-482c-93ff-31a58b36d5a8\",\r\n \"Application_Type\": \"web\"\ + 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"e3ed876b-b9b8-407e-8120-1b20b91ed0e0\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=e3ed876b-b9b8-407e-8120-1b20b91ed0e0;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:04.3294246+00:00\"\ + ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2023-08-23T01:57:10.6931326+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -1423,25 +1455,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:33 GMT + - Mon, 18 Mar 2024 08:45:04 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 1E9C396C112A4165824DA91FC8CFE72F Ref B: MAA201060513033 Ref C: 2024-03-18T08:45:02Z' x-powered-by: - ASP.NET status: @@ -1468,8 +1498,7 @@ interactions: ParameterSetName: - --app --workspace --location --kind -g --application-type User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/testApp?api-version=2020-02-02-preview response: @@ -1477,13 +1506,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"100039e1-0000-0200-0000-64e567930000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d008fc0-0000-0200-0000-65f7ff140000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - c2107666-b5f1-446e-baa8-e07b32f0b308\",\r\n \"Application_Type\": \"web\"\ + 6eecc703-06a2-4e36-ab2a-208d56ce6a3e\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"42c8f7cb-1792-4058-a63d-b37c5ee602ed\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=42c8f7cb-1792-4058-a63d-b37c5ee602ed;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:39.1298144+00:00\"\ + ,\r\n \"InstrumentationKey\": \"75239704-1657-4cbb-b611-5403a0ca6491\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=75239704-1657-4cbb-b611-5403a0ca6491;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:45:08.5798494+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -1500,25 +1529,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:40 GMT + - Mon, 18 Mar 2024 08:45:08 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 401322DACFBC4E5E89F1A268D5077A3C Ref B: MAA201060514019 Ref C: 2024-03-18T08:45:05Z' x-powered-by: - ASP.NET status: @@ -1538,8 +1565,7 @@ interactions: ParameterSetName: - --app --kind -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/testApp?api-version=2018-05-01-preview response: @@ -1547,13 +1573,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"100039e1-0000-0200-0000-64e567930000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d008fc0-0000-0200-0000-65f7ff140000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - c2107666-b5f1-446e-baa8-e07b32f0b308\",\r\n \"Application_Type\": \"web\"\ + 6eecc703-06a2-4e36-ab2a-208d56ce6a3e\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"42c8f7cb-1792-4058-a63d-b37c5ee602ed\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=42c8f7cb-1792-4058-a63d-b37c5ee602ed;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:39.1298144+00:00\"\ + ,\r\n \"InstrumentationKey\": \"75239704-1657-4cbb-b611-5403a0ca6491\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=75239704-1657-4cbb-b611-5403a0ca6491;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:45:08.5798494+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -1570,23 +1596,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:42 GMT + - Mon, 18 Mar 2024 08:45:11 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0574202B236B4DCD91D88C03BAA1B6AE Ref B: MAA201060514031 Ref C: 2024-03-18T08:45:10Z' x-powered-by: - ASP.NET status: @@ -1613,8 +1637,7 @@ interactions: ParameterSetName: - --app --kind -g User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/testApp?api-version=2018-05-01-preview response: @@ -1622,13 +1645,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"10006be1-0000-0200-0000-64e567970000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00b9c0-0000-0200-0000-65f7ff180000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - c2107666-b5f1-446e-baa8-e07b32f0b308\",\r\n \"Application_Type\": \"web\"\ + 6eecc703-06a2-4e36-ab2a-208d56ce6a3e\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"42c8f7cb-1792-4058-a63d-b37c5ee602ed\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=42c8f7cb-1792-4058-a63d-b37c5ee602ed;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2023-08-23T01:57:39.1298144+00:00\"\ + ,\r\n \"InstrumentationKey\": \"75239704-1657-4cbb-b611-5403a0ca6491\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=75239704-1657-4cbb-b611-5403a0ca6491;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:45:08.5798494+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"WorkspaceResourceId\"\ @@ -1646,25 +1669,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:47 GMT + - Mon, 18 Mar 2024 08:45:15 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 2161AC268655476C82D69CD10145858A Ref B: MAA201060514031 Ref C: 2024-03-18T08:45:11Z' x-powered-by: - ASP.NET status: diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml index e9b2fc104ff..b0826e1aaf2 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml +++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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_component_with_public_network_access","date":"2023-12-22T01:35:04Z","module":"application-insights"},"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_component_with_public_network_access","date":"2024-03-18T08:39:15Z","module":"application-insights"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,17 +27,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:13 GMT + - Mon, 18 Mar 2024 08:39:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A5E5025490F640F2AE54A99812E3C2A6 Ref B: MAA201060513029 Ref C: 2024-03-18T08:39:21Z' status: code: 200 message: OK @@ -61,12 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"686162d0-5d75-40c5-9583-ff8629138920","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:35:16.5092761Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:35:16.5092761Z","modifiedDate":"2023-12-22T01:35:16.5092761Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0508f0-0000-0700-0000-6584e7d40000\""}' + string: '{"properties":{"customerId":"deff049e-1ffb-41b3-b4ad-2efcf033fccc","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:26.371347Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:26.371347Z","modifiedDate":"2024-03-18T08:39:26.371347Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99002916-0000-0700-0000-65f7fdbe0000\""}' headers: access-control-allow-origin: - '*' @@ -75,25 +77,29 @@ interactions: cache-control: - no-cache content-length: - - '883' + - '880' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:15 GMT + - Mon, 18 Mar 2024 08:39:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 pragma: - no-cache request-context: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 8D6504FD212949DB8E387E98B1AAB1B2 Ref B: MAA201060513009 Ref C: 2024-03-18T08:39:22Z' x-powered-by: - ASP.NET status: @@ -113,12 +119,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"686162d0-5d75-40c5-9583-ff8629138920","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:35:16.5092761Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:35:16.5092761Z","modifiedDate":"2023-12-22T01:35:16.5092761Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0508f0-0000-0700-0000-6584e7d40000\""}' + string: '{"properties":{"customerId":"deff049e-1ffb-41b3-b4ad-2efcf033fccc","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:26.371347Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:26.371347Z","modifiedDate":"2024-03-18T08:39:26.371347Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99002916-0000-0700-0000-65f7fdbe0000\""}' headers: access-control-allow-origin: - '*' @@ -127,11 +133,11 @@ interactions: cache-control: - no-cache content-length: - - '883' + - '880' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:16 GMT + - Mon, 18 Mar 2024 08:39:28 GMT expires: - '-1' pragma: @@ -140,12 +146,12 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FDFC7FF6830B4FD7BFECB5A0C11AA573 Ref B: MAA201060513009 Ref C: 2024-03-18T08:39:26Z' x-powered-by: - ASP.NET status: @@ -165,31 +171,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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_component_with_public_network_access","date":"2023-12-22T01:35:04Z","module":"application-insights"},"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_component_with_public_network_access","date":"2024-03-18T08:39:15Z","module":"application-insights","DateCreated":"2024-03-18T08:39:25Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '393' + - '464' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:18 GMT + - Mon, 18 Mar 2024 08:39:29 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 135783DFDED3469CA26A9A8531546E57 Ref B: MAA201060513027 Ref C: 2024-03-18T08:39:29Z' status: code: 200 message: OK @@ -213,12 +221,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"f9bba147-e654-464c-98f4-457a543da9c2","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:35:20.7103788Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T19:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:35:20.7103788Z","modifiedDate":"2023-12-22T01:35:20.7103788Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0544f0-0000-0700-0000-6584e7d80000\""}' + string: '{"properties":{"customerId":"7257886f-cc3f-4c5a-9afb-5804835a5c52","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:33.765539Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:33.765539Z","modifiedDate":"2024-03-18T08:39:33.765539Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9900ea16-0000-0700-0000-65f7fdc50000\""}' headers: access-control-allow-origin: - '*' @@ -227,25 +235,29 @@ interactions: cache-control: - no-cache content-length: - - '883' + - '880' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:20 GMT + - Mon, 18 Mar 2024 08:39:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 pragma: - no-cache request-context: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 1CB87C0DCE164816980661D19306AFD8 Ref B: MAA201060514017 Ref C: 2024-03-18T08:39:30Z' x-powered-by: - ASP.NET status: @@ -265,12 +277,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"f9bba147-e654-464c-98f4-457a543da9c2","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:35:20.7103788Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T19:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:35:20.7103788Z","modifiedDate":"2023-12-22T01:35:20.7103788Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0544f0-0000-0700-0000-6584e7d80000\""}' + string: '{"properties":{"customerId":"7257886f-cc3f-4c5a-9afb-5804835a5c52","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:33.765539Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:33.765539Z","modifiedDate":"2024-03-18T08:39:36.8785644Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99007917-0000-0700-0000-65f7fdc80000\""}' headers: access-control-allow-origin: - '*' @@ -279,11 +291,11 @@ interactions: cache-control: - no-cache content-length: - - '883' + - '882' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:20 GMT + - Mon, 18 Mar 2024 08:39:36 GMT expires: - '-1' pragma: @@ -292,12 +304,12 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 29535B7451324B1395117C6C3D72BDB6 Ref B: MAA201060514017 Ref C: 2024-03-18T08:39:34Z' x-powered-by: - ASP.NET status: @@ -323,8 +335,7 @@ interactions: ParameterSetName: - --app --location --kind -g --application-type User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2018-05-01-preview response: @@ -332,13 +343,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82e726b-0000-0200-0000-6584e7dc0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0040b7-0000-0200-0000-65f7fdcd0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 98e36f30-5f74-49b9-ad82-eb2ce710c139\",\r\n \"Application_Type\": \"web\"\ + 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"30adb0aa-5409-4e96-8298-e2f766f30b6a\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=30adb0aa-5409-4e96-8298-e2f766f30b6a;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:24.1737017+00:00\"\ + ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+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\"\ @@ -354,25 +365,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:24 GMT + - Mon, 18 Mar 2024 08:39:41 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: B20753DBC44049B6AA1A4CE5D4A56D6A Ref B: MAA201060515037 Ref C: 2024-03-18T08:39:38Z' x-powered-by: - ASP.NET status: @@ -392,8 +401,7 @@ interactions: ParameterSetName: - --app --query-access --ingestion-access -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2018-05-01-preview response: @@ -401,13 +409,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82e726b-0000-0200-0000-6584e7dc0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0040b7-0000-0200-0000-65f7fdcd0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 98e36f30-5f74-49b9-ad82-eb2ce710c139\",\r\n \"Application_Type\": \"web\"\ + 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"30adb0aa-5409-4e96-8298-e2f766f30b6a\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=30adb0aa-5409-4e96-8298-e2f766f30b6a;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:24.1737017+00:00\"\ + ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+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\"\ @@ -423,23 +431,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:24 GMT + - Mon, 18 Mar 2024 08:39:43 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7A63570232A0412B97049182AA429911 Ref B: MAA201060516045 Ref C: 2024-03-18T08:39:42Z' x-powered-by: - ASP.NET status: @@ -466,8 +472,7 @@ interactions: ParameterSetName: - --app --query-access --ingestion-access -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2018-05-01-preview response: @@ -475,13 +480,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82e296d-0000-0200-0000-6584e7de0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0061b7-0000-0200-0000-65f7fdd10000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 98e36f30-5f74-49b9-ad82-eb2ce710c139\",\r\n \"Application_Type\": \"web\"\ + 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"30adb0aa-5409-4e96-8298-e2f766f30b6a\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=30adb0aa-5409-4e96-8298-e2f766f30b6a;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:24.1737017+00:00\"\ + ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"IngestionMode\"\ @@ -498,25 +503,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:28 GMT + - Mon, 18 Mar 2024 08:39:50 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 4099B4CA87DB47ADA571CA99C5AE3BC4 Ref B: MAA201060516045 Ref C: 2024-03-18T08:39:44Z' x-powered-by: - ASP.NET status: @@ -536,8 +539,7 @@ interactions: ParameterSetName: - --app --workspace --query-access --ingestion-access -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -545,13 +547,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82e296d-0000-0200-0000-6584e7de0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0061b7-0000-0200-0000-65f7fdd10000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 98e36f30-5f74-49b9-ad82-eb2ce710c139\",\r\n \"Application_Type\": \"web\"\ + 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"30adb0aa-5409-4e96-8298-e2f766f30b6a\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=30adb0aa-5409-4e96-8298-e2f766f30b6a;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:24.1737017+00:00\"\ + ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"IngestionMode\"\ @@ -568,23 +570,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:31 GMT + - Mon, 18 Mar 2024 08:39:52 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E31729CE5D6D496785D97BE9D9FE894B Ref B: MAA201060513025 Ref C: 2024-03-18T08:39:51Z' x-powered-by: - ASP.NET status: @@ -604,7 +604,7 @@ interactions: ParameterSetName: - --app --workspace --query-access --ingestion-access -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.OperationalInsights?api-version=2022-09-01 response: @@ -744,17 +744,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:31 GMT + - Mon, 18 Mar 2024 08:39:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 0A9603E31F8D44D8BAB8406ABA748CD9 Ref B: MAA201060513045 Ref C: 2024-03-18T08:39:54Z' status: code: 200 message: OK @@ -772,12 +774,12 @@ interactions: ParameterSetName: - --app --workspace --query-access --ingestion-access -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"686162d0-5d75-40c5-9583-ff8629138920","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-22T01:35:16.5092761Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-22T01:35:16.5092761Z","modifiedDate":"2023-12-22T01:35:18.1403376Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a051ef0-0000-0700-0000-6584e7d60000\""}' + string: '{"properties":{"customerId":"deff049e-1ffb-41b3-b4ad-2efcf033fccc","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:26.371347Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:26.371347Z","modifiedDate":"2024-03-18T08:39:29.1762618Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99006a16-0000-0700-0000-65f7fdc10000\""}' headers: access-control-allow-origin: - '*' @@ -786,11 +788,11 @@ interactions: cache-control: - no-cache content-length: - - '884' + - '882' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:32 GMT + - Mon, 18 Mar 2024 08:39:54 GMT expires: - '-1' pragma: @@ -799,19 +801,19 @@ interactions: - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E951060A86D349E29D3B5EBF1CCE31C4 Ref B: MAA201060513045 Ref C: 2024-03-18T08:39:54Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"d82e296d-0000-0200-0000-6584e7de0000\"", + body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d0061b7-0000-0200-0000-65f7fdd10000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002", "publicNetworkAccessForIngestion": "Disabled", "publicNetworkAccessForQuery": @@ -832,8 +834,7 @@ interactions: ParameterSetName: - --app --workspace --query-access --ingestion-access -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/demoApp?api-version=2020-02-02-preview response: @@ -841,18 +842,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82ec073-0000-0200-0000-6584e7e70000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00acb7-0000-0200-0000-65f7fddd0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 98e36f30-5f74-49b9-ad82-eb2ce710c139\",\r\n \"Application_Type\": \"web\"\ + 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"30adb0aa-5409-4e96-8298-e2f766f30b6a\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=30adb0aa-5409-4e96-8298-e2f766f30b6a;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:24.1737017+00:00\"\ + ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"WorkspaceResourceId\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2023-12-22T01:35:35.0946713+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T08:39:56.8716158+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Disabled\",\r\n \"publicNetworkAccessForQuery\": \"Disabled\",\r\n\ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -866,25 +867,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:38 GMT + - Mon, 18 Mar 2024 08:40:01 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 971D714CB0104A32ABF88D0A6C918264 Ref B: MAA201060515039 Ref C: 2024-03-18T08:39:55Z' x-powered-by: - ASP.NET status: @@ -912,8 +911,7 @@ interactions: ParameterSetName: - --app --workspace --location --query-access --ingestion-access -g --application-type User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/testApp?api-version=2020-02-02-preview response: @@ -921,13 +919,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82ef678-0000-0200-0000-6584e7ee0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00dbb7-0000-0200-0000-65f7fde60000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 4ac54db6-f5bb-4995-8406-559d718ef5e0\",\r\n \"Application_Type\": \"web\"\ + 900f9758-ccd6-46c9-824b-b806531a6705\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"3eec55c4-8138-481a-b14f-8353b0700e38\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=3eec55c4-8138-481a-b14f-8353b0700e38;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:42.41619+00:00\"\ + ,\r\n \"InstrumentationKey\": \"f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:40:05.6991168+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -940,29 +938,27 @@ interactions: cache-control: - no-cache content-length: - - '1386' + - '1388' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:42 GMT + - Mon, 18 Mar 2024 08:40:06 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 9C05B9776FB14BBDAF1A282703D53450 Ref B: MAA201060515051 Ref C: 2024-03-18T08:40:03Z' x-powered-by: - ASP.NET status: @@ -982,8 +978,7 @@ interactions: ParameterSetName: - --app --kind -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/testApp?api-version=2018-05-01-preview response: @@ -991,13 +986,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"d82ef678-0000-0200-0000-6584e7ee0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00dbb7-0000-0200-0000-65f7fde60000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 4ac54db6-f5bb-4995-8406-559d718ef5e0\",\r\n \"Application_Type\": \"web\"\ + 900f9758-ccd6-46c9-824b-b806531a6705\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"3eec55c4-8138-481a-b14f-8353b0700e38\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=3eec55c4-8138-481a-b14f-8353b0700e38;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:42.41619+00:00\"\ + ,\r\n \"InstrumentationKey\": \"f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:40:05.6991168+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -1010,27 +1005,25 @@ interactions: cache-control: - no-cache content-length: - - '1386' + - '1388' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:44 GMT + - Mon, 18 Mar 2024 08:40:08 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 08D339305B5A4C63AFEAC18B60E06BD5 Ref B: MAA201060516011 Ref C: 2024-03-18T08:40:07Z' x-powered-by: - ASP.NET status: @@ -1057,8 +1050,7 @@ interactions: ParameterSetName: - --app --kind -g User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/testApp?api-version=2018-05-01-preview response: @@ -1066,13 +1058,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"d82ef27a-0000-0200-0000-6584e7f10000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00fbb7-0000-0200-0000-65f7fdea0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 4ac54db6-f5bb-4995-8406-559d718ef5e0\",\r\n \"Application_Type\": \"web\"\ + 900f9758-ccd6-46c9-824b-b806531a6705\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"3eec55c4-8138-481a-b14f-8353b0700e38\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=3eec55c4-8138-481a-b14f-8353b0700e38;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2023-12-22T01:35:42.41619+00:00\"\ + ,\r\n \"InstrumentationKey\": \"f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:40:05.6991168+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"WorkspaceResourceId\"\ @@ -1086,29 +1078,27 @@ interactions: cache-control: - no-cache content-length: - - '1412' + - '1414' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 01:35:45 GMT + - Mon, 18 Mar 2024 08:40:11 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 916126934A48488CAE3DED76D43E35E7 Ref B: MAA201060516011 Ref C: 2024-03-18T08:40:09Z' x-powered-by: - ASP.NET status: 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 a20b7323db7..72e25c89acd 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,8 +19,7 @@ interactions: ParameterSetName: - --app --location --kind -g --application-type User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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: @@ -28,13 +27,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e32e13e6-0000-0200-0000-6584f7950000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00aada-0000-0200-0000-65f8030a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\"\ - : \"e59c14c6-e261-48b9-9324-128f57dec60e\",\r\n \"Application_Type\": \"\ + : \"ec384666-2788-44d4-9109-5b6a5d817157\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"d28b73c1-16e9-41a8-99e6-10e22c37bd1b\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=d28b73c1-16e9-41a8-99e6-10e22c37bd1b;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2023-12-22T02:42:29.5074565+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"7c3581fb-2739-4713-ade5-f5d0f4da4d48\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=7c3581fb-2739-4713-ade5-f5d0f4da4d48;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-03-18T09:02:02.4677124+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\"\ @@ -50,25 +49,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:42:29 GMT + - Mon, 18 Mar 2024 09:02:02 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 199F0C609C034BF5A677DB0DB2110710 Ref B: MAA201060516021 Ref C: 2024-03-18T09:01:59Z' x-powered-by: - ASP.NET status: @@ -88,8 +85,7 @@ interactions: ParameterSetName: - -g --app User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2020-02-02-preview response: @@ -97,13 +93,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e32e13e6-0000-0200-0000-6584f7950000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00aada-0000-0200-0000-65f8030a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\"\ - : \"e59c14c6-e261-48b9-9324-128f57dec60e\",\r\n \"Application_Type\": \"\ + : \"ec384666-2788-44d4-9109-5b6a5d817157\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"d28b73c1-16e9-41a8-99e6-10e22c37bd1b\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=d28b73c1-16e9-41a8-99e6-10e22c37bd1b;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2023-12-22T02:42:29.5074565+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"7c3581fb-2739-4713-ade5-f5d0f4da4d48\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=7c3581fb-2739-4713-ade5-f5d0f4da4d48;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-03-18T09:02:02.4677124+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\"\ @@ -119,23 +115,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:42:30 GMT + - Mon, 18 Mar 2024 09:02:04 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 53B63E5B3B3E48C6B5B6666326876F7C Ref B: MAA201060514033 Ref C: 2024-03-18T09:02:03Z' x-powered-by: - ASP.NET status: @@ -155,31 +149,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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":"2023-12-22T02:41:58Z","module":"application-insights","DateCreated":"2023-12-22T02:42:24Z","Creator":"v-jingszhang@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":"2024-03-18T09:01:26Z","module":"application-insights","DateCreated":"2024-03-18T09:01:33Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '449' + - '444' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:42:32 GMT + - Mon, 18 Mar 2024 09:02:05 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 1291B57C920B48E9A4ABB289C62984EA Ref B: MAA201060513025 Ref C: 2024-03-18T09:02:06Z' status: code: 200 message: OK @@ -203,42 +199,40 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":86804,"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-157_86804","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2023-12-22T02:42:37.28"},"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":15202,"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-245_15202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-03-18T09:02:11.2633333"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1591' + - '1596' content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:39 GMT + - Mon, 18 Mar 2024 09:02:15 GMT etag: - - '"1DA348086B4B920"' + - '"1DA7912F71B88C0"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: A37178D4000C4EED8E4138FCC7364D9C Ref B: MAA201060514025 Ref C: 2024-03-18T09:02:06Z' x-powered-by: - ASP.NET status: @@ -258,39 +252,37 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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":86804,"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-157_86804","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2023-12-22T02:42:37.28"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":15202,"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-245_15202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-03-18T09:02:11.2633333"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1513' + - '1518' content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:42 GMT + - Mon, 18 Mar 2024 09:02:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5509BD9AB13948EF8BFB292D0BBA0930 Ref B: MAA201060516019 Ref C: 2024-03-18T09:02:25Z' x-powered-by: - ASP.NET status: @@ -310,84 +302,84 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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 - Framework 4.8","value":"dotnetframework48","minorVersions":[{"displayText":".NET - Framework 4.8","value":"4.8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v4.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"4.8.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v4.0"},"supportedFunctionsExtensionVersions":["~4"]}}}]},{"displayText":".NET 8 Isolated","value":"dotnet8isolated","minorVersions":[{"displayText":".NET - 8 Isolated","value":"8 (LTS) Isolated","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","isHidden":false,"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"],"endOfLifeDate":"2026-11-10T00:00:00Z","isEarlyAccess":true},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|8.0","isHidden":false,"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"],"endOfLifeDate":"2026-11-10T00:00:00Z"}}}]},{"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 - 7 Isolated","value":"7 (STS) Isolated","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v7.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-05-14T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|7.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-05-14T00:00:00Z"}}}]},{"displayText":".NET - 6","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS)","value":"6 - (LTS)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET|6.0","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET|6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET + 7 Isolated","value":"7 (STS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v7.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-05-14T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|7.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-05-14T00:00:00Z"}}}]},{"displayText":".NET 6 Isolated","value":"dotnet6isolated","minorVersions":[{"displayText":".NET - 6 (LTS) Isolated","value":"6 (LTS) Isolated","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET + 6 (LTS) Isolated","value":"6 (LTS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET + Framework 4.8","value":"dotnetframework48","minorVersions":[{"displayText":".NET + Framework 4.8","value":".NET Framework 4.8, isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v4.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"4.8.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v4.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}]}}}]},{"displayText":".NET + 6 In-process","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS) + In-process","value":"6 (LTS), in-process model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET|6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET 5 (non-LTS)","value":"dotnet5","minorVersions":[{"displayText":".NET 5 (non-LTS)","value":"5 - (non-LTS)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET-ISOLATED|5.0"},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET - Core 3","value":"dotnetcore3","minorVersions":[{"displayText":".NET Core 3.1","value":"3.1","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"dotnet|3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"dotnet|3.1"},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET - 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"]},"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"]}}}]},{"displayText":".NET + (non-LTS)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET-ISOLATED|5.0"},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET + Core 3","value":"dotnetcore3","minorVersions":[{"displayText":".NET Core 3.1","value":"3.1","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"dotnet|3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"dotnet|3.1"},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET + 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"]}}}]}]}},{"id":null,"name":"node","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Node.js","value":"node","preferredOs":"windows","majorVersions":[{"displayText":"Node.js - 20","value":"20","minorVersions":[{"displayText":"Node.js 20","value":"20","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~20","isPreview":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"],"endOfLifeDate":"2026-05-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|20","isPreview":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"],"endOfLifeDate":"2026-05-30T00:00:00Z"}}}]},{"displayText":"Node.js + 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 + 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 18","value":"18","minorVersions":[{"displayText":"Node.js 18 LTS","value":"18 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~18","isDefault":true,"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"],"endOfLifeDate":"2025-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|18","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|18"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2025-04-30T00:00:00Z"}}}]},{"displayText":"Node.js + 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 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~16"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-06-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|16"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-06-30T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~16"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-06-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|16"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-06-30T00:00:00Z"}}}]},{"displayText":"Node.js 14","value":"14","minorVersions":[{"displayText":"Node.js 14 LTS","value":"14 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~14"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"endOfLifeDate":"2023-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|14"},"supportedFunctionsExtensionVersions":["~4","~3"],"endOfLifeDate":"2023-04-30T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~14"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|14"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-04-30T00:00:00Z"}}}]},{"displayText":"Node.js 12","value":"12","minorVersions":[{"displayText":"Node.js 12 LTS","value":"12 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~12"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-13T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|12"},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-13T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~12"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-13T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|12"},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-13T00:00:00Z"}}}]},{"displayText":"Node.js 10","value":"10","minorVersions":[{"displayText":"Node.js 10 LTS","value":"10 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~10"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2","~3"],"endOfLifeDate":"2021-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|10"},"supportedFunctionsExtensionVersions":["~2","~3"],"endOfLifeDate":"2021-04-30T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~10"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2021-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|10"},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2021-04-30T00:00:00Z"}}}]},{"displayText":"Node.js 8","value":"8","minorVersions":[{"displayText":"Node.js 8 LTS","value":"8 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~8","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"],"endOfLifeDate":"2019-12-31T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~8","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","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"WEBSITE_NODE_DEFAULT_VERSION":"~6"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~1"],"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"],"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"],"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"],"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"],"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"],"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"],"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 - 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"],"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"],"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"],"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"],"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"],"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"],"endOfLifeDate":"2025-03-01T00:00:00Z"}}}]}]}},{"id":null,"name":"powershell","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"PowerShell + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~6","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.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 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":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.4","netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"]},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":false,"isPreview":true,"isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.4"},"supportedFunctionsExtensionVersions":["~4"]}}},{"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"],"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"],"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"],"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"],"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"],"endOfLifeDate":"2022-09-30T00:00:00Z"}}}]}]}},{"id":null,"name":"custom","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Custom + 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}]},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":false,"isPreview":true,"isHidden":true,"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}]}}},{"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.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 - Handler","value":"custom","minorVersions":[{"displayText":"Custom Handler","value":"custom","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"custom","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3","~2"]},"linuxRuntimeSettings":{"runtimeVersion":"","isPreview":false,"appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":""},"supportedFunctionsExtensionVersions":["~4","~3","~2"]}}}]}]}}],"nextLink":null,"id":null}' + Handler","value":"custom","minorVersions":[{"displayText":"Custom Handler","value":"custom","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"custom","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"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}]},"linuxRuntimeSettings":{"runtimeVersion":"","isPreview":false,"appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":""},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}]}}}]}]}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '28259' + - '35805' content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:43 GMT + - Mon, 18 Mar 2024 09:02:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 292F7684872342B1950BCCCC05DC1CB6 Ref B: MAA201060513017 Ref C: 2024-03-18T09:02:26Z' x-powered-by: - ASP.NET status: @@ -407,12 +399,12 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-storage/21.1.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2023-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":"2023-12-22T02:42:01.1847154Z","key2":"2023-12-22T02:42:01.1847154Z"},"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":"2023-12-22T02:42:02.0440995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2023-12-22T02:42:02.0440995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-12-22T02:42:01.0909697Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-03-18T09:01:33.8786769Z","key2":"2024-03-18T09:01:33.8786769Z"},"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-03-18T09:01:35.0662122Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-03-18T09:01:35.0662122Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-03-18T09:01:33.7692943Z","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 @@ -421,21 +413,19 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:43 GMT + - Mon, 18 Mar 2024 09:02:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DD35BB79D4F64D9A8D02ED290A2F36FE Ref B: MAA201060513051 Ref C: 2024-03-18T09:02:27Z' status: code: 200 message: OK @@ -455,12 +445,12 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-storage/21.1.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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-01-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2023-12-22T02:42:01.1847154Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2023-12-22T02:42:01.1847154Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2024-03-18T09:01:33.8786769Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-03-18T09:01:33.8786769Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -469,23 +459,21 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:44 GMT + - Mon, 18 Mar 2024 09:02:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' + x-msedge-ref: + - 'Ref A: 24CD657D88684645ADBE18830B0C1F8F Ref B: MAA201060513051 Ref C: 2024-03-18T09:02:28Z' status: code: 200 message: OK @@ -493,8 +481,8 @@ interactions: body: '{"kind": "functionapp", "location": "West US", "properties": {"serverFarmId": "clitestplan000005", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", - "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~14"}, - {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3"}, {"name": "AzureWebJobsStorage", + "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~20"}, + {"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, "http20Enabled": true}, "daprConfig": {"enabled": false}, "scmSiteAlsoStopped": @@ -515,44 +503,42 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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-157.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,"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":"2023-12-22T02:42:46.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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-245.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,"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-03-18T09:02:32.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.82.255.132","possibleInboundIpAddresses":"40.82.255.132","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-157.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,40.82.255.132","possibleOutboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,20.184.242.129,20.184.242.157,20.184.243.181,20.184.243.194,20.184.243.214,20.184.243.231,20.184.243.240,20.184.243.254,20.184.244.7,20.184.244.22,20.184.244.46,20.184.244.62,20.184.244.81,20.184.244.93,20.184.244.106,20.184.244.116,20.184.244.119,20.184.244.123,20.184.244.124,20.184.244.130,20.184.244.141,52.157.32.33,52.157.32.35,52.157.32.39,40.82.255.132","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-157","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","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.115","possibleInboundIpAddresses":"40.112.243.115","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-245.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,40.112.243.115","possibleOutboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.66.63.171,20.245.136.188,20.66.63.212,20.237.175.121,20.237.175.228,20.228.92.43,20.228.92.148,20.237.175.235,20.228.88.45,20.228.89.191,20.228.90.170,20.228.91.80,20.228.91.196,20.228.91.197,20.228.89.188,20.253.170.80,20.237.169.40,20.237.171.181,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.228.95.56,20.228.95.57,20.245.137.169,20.245.138.96,20.245.141.46,20.228.95.139,40.112.243.115","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-245","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","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '7099' + - '7649' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:04 GMT + - Mon, 18 Mar 2024 09:02:50 GMT etag: - - '"1DA34808C0B66EB"' + - '"1DA79130365634B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '499' + x-msedge-ref: + - 'Ref A: 9318B2EE8A7F426286681797469DB2E1 Ref B: MAA201060516019 Ref C: 2024-03-18T09:02:29Z' x-powered-by: - ASP.NET status: @@ -572,7 +558,7 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 response: @@ -801,16 +787,31 @@ interactions: }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\"\ ,\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\"\ ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israel\"\ + ,\"name\":\"israel\",\"displayName\":\"Israel\",\"regionalDisplayName\":\"\ + Israel\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italy\"\ + ,\"name\":\"italy\",\"displayName\":\"Italy\",\"regionalDisplayName\":\"Italy\"\ + ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\"\ ,\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\"\ ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\"\ ,\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\"\ ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ - id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealand\"\ + ,\"name\":\"newzealand\",\"displayName\":\"New Zealand\",\"regionalDisplayName\"\ + :\"New Zealand\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\"\ + :\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\"\ ,\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"\ Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\ - }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/poland\"\ + ,\"name\":\"poland\",\"displayName\":\"Poland\",\"regionalDisplayName\":\"\ + Poland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatar\"\ + ,\"name\":\"qatar\",\"displayName\":\"Qatar\",\"regionalDisplayName\":\"Qatar\"\ + ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\"\ ,\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\"\ :\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\"\ :\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\"\ @@ -999,21 +1000,23 @@ interactions: cache-control: - no-cache content-length: - - '32116' + - '33171' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:43:07 GMT + - Mon, 18 Mar 2024 09:02:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B0A5A333086446F1867843E738C9E081 Ref B: MAA201060516051 Ref C: 2024-03-18T09:02:51Z' status: code: 200 message: OK @@ -1031,30 +1034,30 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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":"9eacee71-cc39-41a5-8b0f-32e46a8498d0","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2022-10-31T03:25:54Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-11-04T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-10-31T03:25:54Z","modifiedDate":"2022-11-04T08:11:13.7914211Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acctestrg-sentinel-221011134813007315/providers/microsoft.operationalinsights/workspaces/acctestlaw-221011134813007315","name":"acctestLAW-221011134813007315","type":"Microsoft.OperationalInsights/workspaces","etag":"\"a4001f5d-0000-0d00-0000-6364c9260000\""},{"properties":{"customerId":"5887816a-c79e-4479-937f-032bc438c056","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-14T08:29:52.2948331Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-14T08:29:52.2948331Z","modifiedDate":"2023-12-22T01:36:50.5468296Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0560f5-0000-0700-0000-6584e8320000\""}]}' + string: '{"value":[{"properties":{"customerId":"7c16a8dd-b983-4f75-b78b-a804c169306c","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-06-12T07:58:15.2315304Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-16T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-12T07:58:15.2315304Z","modifiedDate":"2024-03-15T22:25:55.0829258Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-EUS","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-EUS","type":"Microsoft.OperationalInsights/workspaces","etag":"\"06001214-0000-0100-0000-65f4caf30000\""},{"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":"73bc18d2-9fd9-4650-b23d-d932c03fd857","provisioningState":"Succeeded","sku":{"name":"CapacityReservation","capacityReservationLevel":100,"lastSkuUpdate":"2024-03-16T20:58:44.6430816Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":1.0,"quotaNextResetTime":"2024-03-17T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-16T20:58:44.6430816Z","modifiedDate":"2024-03-16T20:58:45.6618485Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_monitor_workspace_recoverxav3t45doa2jqenhxxu4w5dh23ils6h7pqukcam3c/providers/Microsoft.OperationalInsights/workspaces/clitestx34zikmfsykjp","name":"clitestx34zikmfsykjp","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0700406b-0000-0100-0000-65f608050000\""},{"properties":{"customerId":"9eacee71-cc39-41a5-8b0f-32e46a8498d0","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2022-10-31T03:25:54Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-11-04T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-10-31T03:25:54Z","modifiedDate":"2022-11-04T08:11:13.7914211Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acctestrg-sentinel-221011134813007315/providers/microsoft.operationalinsights/workspaces/acctestlaw-221011134813007315","name":"acctestLAW-221011134813007315","type":"Microsoft.OperationalInsights/workspaces","etag":"\"a4001f5d-0000-0d00-0000-6364c9260000\""},{"properties":{"customerId":"33a99994-dbfc-4eeb-88c9-b7a68f8a2ec3","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-15T04:22:27.3459636Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-16T01:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-15T04:22:27.3459636Z","modifiedDate":"2024-03-15T23:28:22.8298188Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-NEU/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-NEU","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-NEU","type":"Microsoft.OperationalInsights/workspaces","etag":"\"a000bd5f-0000-0c00-0000-65f4d9960000\""}]}' headers: cache-control: - no-cache content-length: - - '3726' + - '5710' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:43:08 GMT + - Mon, 18 Mar 2024 09:02:55 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-original-request-ids: @@ -1063,6 +1066,8 @@ interactions: - '' - '' - '' + x-msedge-ref: + - 'Ref A: 6673DEDA25F1494085C71B7852CE4643 Ref B: MAA201060513039 Ref C: 2024-03-18T09:02:54Z' status: code: 200 message: OK @@ -1264,7 +1269,7 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:09 GMT + - Mon, 18 Mar 2024 09:02:58 GMT last-modified: - Thu, 24 Aug 2023 23:50:38 GMT transfer-encoding: @@ -1275,9 +1280,13 @@ interactions: - Accept-Encoding - Accept-Encoding x-azure-ref: - - 20231222T024309Z-apf0mhef4926v45b3cawfvpa6s00000000fg00000000vxa1 + - 20240318T090257Z-hgst0k03992x34r6m1znmfbng8000000061g00000000787q x-cache: - TCP_HIT + x-cache-info: + - L1_T2 + x-fd-int-roxy-purgeid: + - '37550646' x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -1287,450 +1296,6 @@ interactions: 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.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG-sentinel-221011134813007315","name":"acctestRG-sentinel-221011134813007315","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3fedjzfl2xng5k4manazg5hm4id5tgpwizylx2uow25xw5ufsfb6wnrkegrkvx7ha","name":"clitest.rg3fedjzfl2xng5k4manazg5hm4id5tgpwizylx2uow25xw5ufsfb6wnrkegrkvx7ha","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2023-03-23T04:22:48Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hphkqchjyj2tpr65oche3ocevgvwqplcum5uxwb5bn7s4h5bqdkrcgbxszc5hotu","name":"clitest.rg3hphkqchjyj2tpr65oche3ocevgvwqplcum5uxwb5bn7s4h5bqdkrcgbxszc5hotu","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2023-03-30T15:46:02Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc6anwjc2gzg6m6lxnaf5e2afnce5zehu7dyy3e4aw6calppyqylcmyhdk7j764h6","name":"cli_test_dnc6anwjc2gzg6m6lxnaf5e2afnce5zehu7dyy3e4aw6calppyqylcmyhdk7j764h6","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-22T23:35:58Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncvffnlidvdel3q6hezrj3igiv56z2mpmznhzkfupceu7bzxc6inhv3t7y4bty5lh","name":"cli_test_dncvffnlidvdel3q6hezrj3igiv56z2mpmznhzkfupceu7bzxc6inhv3t7y4bty5lh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-23T05:07:39Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncvpbasfph3qrwwnsbdxusvcpxrgfzi2dkm2rntz7fefyhoncccax3tu3mpy6xb3b","name":"cli_test_dncvpbasfph3qrwwnsbdxusvcpxrgfzi2dkm2rntz7fefyhoncccax3tu3mpy6xb3b","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-23T12:48:36Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncikyw2fj6av3c6dlt5kmasuqhe2r4iqzcguwzbfazrkse76eqjmicp34h3melofd","name":"cli_test_dncikyw2fj6av3c6dlt5kmasuqhe2r4iqzcguwzbfazrkse76eqjmicp34h3melofd","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-29T23:21:51Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwpwm5vejt5kaxomt4optf2wechjlt4u6cl3irqtgvli4ffofzbtdlu6v4dfuq4z","name":"cli_test_dncwpwm5vejt5kaxomt4optf2wechjlt4u6cl3irqtgvli4ffofzbtdlu6v4dfuq4z","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-30T04:12:59Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc43dybsupwnuvqx7ibmjgm64lmnnjiy7w2xxv2wa75wv6w2v2i4fg46iiprdzi4a","name":"cli_test_dnc43dybsupwnuvqx7ibmjgm64lmnnjiy7w2xxv2wa75wv6w2v2i4fg46iiprdzi4a","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-30T11:31:44Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncmt2ihfrizzclfb5dn53w33iqx6u5d6mw27wwogkcffw3en3fmhqexp2b6hb5yfv","name":"cli_test_dncmt2ihfrizzclfb5dn53w33iqx6u5d6mw27wwogkcffw3en3fmhqexp2b6hb5yfv","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-06T23:28:37Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncrbnljeskommfphknps3sldjuisq5fpjjjrt6auwfvhr6ytxabpdgtkpltycvzb5","name":"cli_test_dncrbnljeskommfphknps3sldjuisq5fpjjjrt6auwfvhr6ytxabpdgtkpltycvzb5","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-07T05:18:26Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc63mys5ytb3v6zyrj2ux72vi4luhp5p4e4pn6vnphpkmxre7yjiwwruhy5qbgbdy","name":"cli_test_dnc63mys5ytb3v6zyrj2ux72vi4luhp5p4e4pn6vnphpkmxre7yjiwwruhy5qbgbdy","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-07T12:58:24Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncyze6fu2drac5y2gztzisc77iz4vtlh5rct2ccub6mhjrb3e6wdm4pkmkzzscg7a","name":"cli_test_dncyze6fu2drac5y2gztzisc77iz4vtlh5rct2ccub6mhjrb3e6wdm4pkmkzzscg7a","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-13T23:24:35Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncxqococqe57godkvxp3twcntojrjqg6jolwm5l3nkb2f73mtmdaj4lt22ybk3mq3","name":"cli_test_dncxqococqe57godkvxp3twcntojrjqg6jolwm5l3nkb2f73mtmdaj4lt22ybk3mq3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-14T04:50:59Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwiavx6i4zanq52vs3vpojylcpfpruxqlttt66nw37byynl7mh4orglwcogltwpk","name":"cli_test_dncwiavx6i4zanq52vs3vpojylcpfpruxqlttt66nw37byynl7mh4orglwcogltwpk","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-14T12:33:57Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnctuwgvfse52plzmi4swkqvywupr4fygfg6hk4sjq3ouggwtynzcug2htbwlbwnrw","name":"cli_test_dnctuwgvfse52plzmi4swkqvywupr4fygfg6hk4sjq3ouggwtynzcug2htbwlbwnrw","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-03T23:22:15Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncyvozv4da2op3fwbx5cscefyzttanmmlxg4yncil54k3vujfqrzvqq2fsisipkq6","name":"cli_test_dncyvozv4da2op3fwbx5cscefyzttanmmlxg4yncil54k3vujfqrzvqq2fsisipkq6","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-04T06:21:16Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnceto73czp7gh3nvtwcx2is4ewl72hq5wxvxl7lvta7ql4j32npasjcqqwk3y2m4h","name":"cli_test_dnceto73czp7gh3nvtwcx2is4ewl72hq5wxvxl7lvta7ql4j32npasjcqqwk3y2m4h","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-04T13:50:14Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncqcug426zeswxzpenr75f5xrxgrac6rc76pngvixtwzfinyjl47n7l7ifgbdmbfw","name":"cli_test_dncqcug426zeswxzpenr75f5xrxgrac6rc76pngvixtwzfinyjl47n7l7ifgbdmbfw","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-11T01:50:17Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnctpjil3yggub6ctjq6g67zg4tfr3uaopzlpqtbr3hianu5zsepu3dwdvi5xuzegt","name":"cli_test_dnctpjil3yggub6ctjq6g67zg4tfr3uaopzlpqtbr3hianu5zsepu3dwdvi5xuzegt","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-11T11:59:46Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc2xofyhglmknddkvbi3bsstejknoa37l4vklnvy7f5qs3ryvcvbl45p4bxixht54","name":"cli_test_dnc2xofyhglmknddkvbi3bsstejknoa37l4vklnvy7f5qs3ryvcvbl45p4bxixht54","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-11T21:41:46Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwguvlsw5zf5xs2ynf3cnh2q5e2bolmq33m5g4rnr43mw55mgjc6mewxu2qo5fvs","name":"cli_test_dncwguvlsw5zf5xs2ynf3cnh2q5e2bolmq33m5g4rnr43mw55mgjc6mewxu2qo5fvs","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-18T01:42:01Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncb3vam3f7crckpdvguhz2tvulv7eoyiqjmeie47teuhjtm4b4p2d67c5gnbvxi4g","name":"cli_test_dncb3vam3f7crckpdvguhz2tvulv7eoyiqjmeie47teuhjtm4b4p2d67c5gnbvxi4g","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-18T12:10:46Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncsovycfw76jczwaxi4dclnunx7jsb4jt7jojnazf5onkaiqrlzzcrhlib4eaarb6","name":"cli_test_dncsovycfw76jczwaxi4dclnunx7jsb4jt7jojnazf5onkaiqrlzzcrhlib4eaarb6","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-18T21:52:10Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncl5lmowpvvbik6lcrn7i6rjf65oumxgeyiko62csed4ko2qefw5huaysc4fkzra7","name":"cli_test_dncl5lmowpvvbik6lcrn7i6rjf65oumxgeyiko62csed4ko2qefw5huaysc4fkzra7","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-25T01:42:36Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnco5jgo32sgegy7ctgoryldru2gdurpu2pfaporno4nirssy7k3zzveruhu6sjk26","name":"cli_test_dnco5jgo32sgegy7ctgoryldru2gdurpu2pfaporno4nirssy7k3zzveruhu6sjk26","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-25T13:31:18Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc7u2tfkcsaib6jpts4daj3w3x52ga64v2ukgnj4evas3nsf3see3mhxmyadfmz5h","name":"cli_test_dnc7u2tfkcsaib6jpts4daj3w3x52ga64v2ukgnj4evas3nsf3see3mhxmyadfmz5h","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-25T23:09:26Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnch7dnqchs233j2oxmcf2dpwq5unash7gqul4mmz7fvvh66bkezqvimzddjslqdx2","name":"cli_test_dnch7dnqchs233j2oxmcf2dpwq5unash7gqul4mmz7fvvh66bkezqvimzddjslqdx2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-02T01:47:54Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc5ia3zjwscs2y7xba33cbzutxru4iywxhypvvklkmz5g7gn7ohpvpa3blbhpnnof","name":"cli_test_dnc5ia3zjwscs2y7xba33cbzutxru4iywxhypvvklkmz5g7gn7ohpvpa3blbhpnnof","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-02T14:05:39Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncqudbudgclou3sgeq3pok46bceh6jnsyib4quvenu56c46vi5jai4ngfbqssge6x","name":"cli_test_dncqudbudgclou3sgeq3pok46bceh6jnsyib4quvenu56c46vi5jai4ngfbqssge6x","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-03T00:30:15Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncn5dtrjffl3fiqz5jzyzffcpqgvyzml5ldvskudc6vqhes2sn4eykunzu437i5hc","name":"cli_test_dncn5dtrjffl3fiqz5jzyzffcpqgvyzml5ldvskudc6vqhes2sn4eykunzu437i5hc","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-09T01:46:40Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncnn7p23ep4ozzrcy7iph754qwhtd3a7g54kdh27stfobstq7eankrcxvme3ofcfq","name":"cli_test_dncnn7p23ep4ozzrcy7iph754qwhtd3a7g54kdh27stfobstq7eankrcxvme3ofcfq","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-09T14:09:55Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc3bjanmofdauawudznehk3lhjrcsci7brz6k2fxsnuqxarkl6iwadxl4bhffhgvt","name":"cli_test_dnc3bjanmofdauawudznehk3lhjrcsci7brz6k2fxsnuqxarkl6iwadxl4bhffhgvt","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-16T01:49:23Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc3avxffg2qgxljvpqnmrbvtasr5zylxhlogukc43qqwgmbjjnyezpdwmtutkncqj","name":"cli_test_dnc3avxffg2qgxljvpqnmrbvtasr5zylxhlogukc43qqwgmbjjnyezpdwmtutkncqj","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-16T14:26:55Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncf654wpmbqykynedwlqs4xpr2zmfbalwcqm3khvybv2jknqmqrr5tmv6hzc5u4u2","name":"cli_test_dncf654wpmbqykynedwlqs4xpr2zmfbalwcqm3khvybv2jknqmqrr5tmv6hzc5u4u2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-17T00:11:32Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv7nwv6o5wdiv3dumjmaiwotyzsj4kbdd7nteo6f64z6x622waywqorjcuvdvn6q5v","name":"clitest.rgv7nwv6o5wdiv3dumjmaiwotyzsj4kbdd7nteo6f64z6x622waywqorjcuvdvn6q5v","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"product":"azurecli","cause":"automation","date":"2022-11-24T16:06:05Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview","name":"managed-rg-feng-purview","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Purview/accounts/feng-purview","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6kzjmeryiey3qq6r3t2fpgbpghqhjxjs53hyzljt5ht53gn6dzdhduqzthm5g5ck","name":"clitest.rgl6kzjmeryiey3qq6r3t2fpgbpghqhjxjs53hyzljt5ht53gn6dzdhduqzthm5g5ck","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-03-11T23:44:39Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvsrrci2gv23pas67rbcxkq3wi3mlj5wohqb6capbzzu6mnlijgtvkrydqtmes4xth","name":"clitest.rgvsrrci2gv23pas67rbcxkq3wi3mlj5wohqb6capbzzu6mnlijgtvkrydqtmes4xth","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-03-11T23:45:45Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses3lbsf6qmqwhq37l6ux4ohtdp7ye7","name":"cli_test_cross_region_lb_address_pool_addresses3lbsf6qmqwhq37l6ux4ohtdp7ye7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-09-09T07:42:55Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressessorxb3aoxeyj6hwp7xbjrluhvll5","name":"cli_test_cross_region_lb_address_pool_addressessorxb3aoxeyj6hwp7xbjrluhvll5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-09-09T23:03:32Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesylgb2sdnivfju2jeo574cw6aen5s","name":"cli_test_cross_region_lb_address_pool_addressesylgb2sdnivfju2jeo574cw6aen5s","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-09-15T07:49:10Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_custom_ip_prefix","name":"cli_test_custom_ip_prefix","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesxka42cqxp6rjvbzgazh7ecrlnj4t","name":"cli_test_cross_region_lb_address_pool_addressesxka42cqxp6rjvbzgazh7ecrlnj4t","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-11T10:58:59Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses2hce7xfbzsdwpykl3vppa5aep26o","name":"cli_test_cross_region_lb_address_pool_addresses2hce7xfbzsdwpykl3vppa5aep26o","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-22T11:45:02Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses6oqezeoarxvtyhro5ztgzkjvzsnx","name":"cli_test_cross_region_lb_address_pool_addresses6oqezeoarxvtyhro5ztgzkjvzsnx","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-22T19:40:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap","name":"zhiyihuang-rg-euap","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli","name":"portal2cli","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test","name":"xz3-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest","name":"yishitest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg","name":"zhiyihuang-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount","name":"galleryappaccount","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzbeblkttjho7ivjugywrrdo434xmuxdoavddsbgimm67257rgj55tqcilnerpaqwu","name":"clitest.rgzbeblkttjho7ivjugywrrdo434xmuxdoavddsbgimm67257rgj55tqcilnerpaqwu","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T06:25:18Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest","name":"queuetest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_edgeorder_7nmgdmdnsspu6kw3oj3hhw7zp6qz7su6mbmczfkqdmyqkr77odop2kzo","name":"cli_test_edgeorder_7nmgdmdnsspu6kw3oj3hhw7zp6qz7su6mbmczfkqdmyqkr77odop2kzo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-15T08:59:40Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_edgeorder_5n7gqmjph2nsnfwhrzkkudzvufgclsat5uyxmnxnz6dktpiue4tczccf","name":"cli_test_edgeorder_5n7gqmjph2nsnfwhrzkkudzvufgclsat5uyxmnxnz6dktpiue4tczccf","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-15T09:00:21Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg","name":"hang-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yakou2","name":"t-yakou2","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fybot","name":"fybot","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist","name":"kairu-persist","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge","name":"azure-cli-edge","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd","name":"clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-07T02:26:47Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf","name":"clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-26T05:30:07Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6","name":"clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-26T05:36:17Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryapp-test","name":"galleryapp-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli3p2r6","name":"synapse-cli3p2r6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-09T09:25:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhwen-domain","name":"zhwen-domain","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7mq4npypkfsrtpl25kfviwdtpxku4bq7zbx2qvktjd3dpsu3qvbyu64odoyhibu5","name":"clitest.rga7mq4npypkfsrtpl25kfviwdtpxku4bq7zbx2qvktjd3dpsu3qvbyu64odoyhibu5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-01-13T21:50:33Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_monitor_autoscale_fixeds7y6ux3n5fm3clqexmvr2ilnp3u56jwluuq57zdov2f","name":"cli_test_monitor_autoscale_fixeds7y6ux3n5fm3clqexmvr2ilnp3u56jwluuq57zdov2f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T18:57:12Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_managed74oqsv4u3cprmu4clphfxt63d5csnwg7geuw6b6a6claxrb6447pyy6gd62","name":"img_tmpl_managed74oqsv4u3cprmu4clphfxt63d5csnwg7geuw6b6a6claxrb6447pyy6gd62","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-03-31T22:37:49Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s","name":"clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-26T08:46:36Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/taoxu","name":"taoxu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_image_builder_template_validator_j75732rkbywmslx5znxfd3uucemtljkjv","name":"cli_test_image_builder_template_validator_j75732rkbywmslx5znxfd3uucemtljkjv","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-08-31T07:05:02Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_monitor_autoscale_fixedxeinamxuytfvu67rebecmjurgr23edvz4rxzwwae7bj","name":"cli_test_monitor_autoscale_fixedxeinamxuytfvu67rebecmjurgr23edvz4rxzwwae7bj","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-11-03T12:17:38Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliaswp6mdeod73sd5d4jg5dqieyjvfemlv3shertmyxcfkmy3md5yf4hyn6hes","name":"cli_test_eh_aliaswp6mdeod73sd5d4jg5dqieyjvfemlv3shertmyxcfkmy3md5yf4hyn6hes","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-11-09T10:34:48Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzurePowerShellLiveTest","name":"AzurePowerShellLiveTest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azpslrg0bt2bxi5pb","name":"azpslrg0bt2bxi5pb","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_idsqwjmwoaeshqltyrofxj5ojd5isjjczsccdi5jcq3x5sm","name":"cli_test_lock_commands_with_idsqwjmwoaeshqltyrofxj5ojd5isjjczsccdi5jcq3x5sm","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_commands_with_ids","date":"2023-08-25T22:20:56Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idgxknyqo74yb3nz5y6sjpvl3xvplf4tedcbyyoojd7cac7","name":"cli_test_lock_with_resource_idgxknyqo74yb3nz5y6sjpvl3xvplf4tedcbyyoojd7cac7","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_resource_id","date":"2023-08-25T22:21:21Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idqixjmetlxlpakypqebn4mbgvrmva4ltfkuf5o4s6sfyye","name":"cli_test_lock_with_resource_idqixjmetlxlpakypqebn4mbgvrmva4ltfkuf5o4s6sfyye","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_three_level_resource_id","date":"2023-08-25T22:21:42Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_moduleshtidl7jlu5sgvvmbtrcrg6ds4uc2sq2spec2dt5qf","name":"cli_test_hardware_security_moduleshtidl7jlu5sgvvmbtrcrg6ds4uc2sq2spec2dt5qf","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-08-26T06:33:26Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idq2rk3tfxqspav7wgxe6tfdlsz5dmthagscxdxceexnlva","name":"cli_test_lock_with_resource_idq2rk3tfxqspav7wgxe6tfdlsz5dmthagscxdxceexnlva","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_resource_id","date":"2023-08-26T11:50:49Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesjcdnujh5xrj7aii5xu5a6ohrdlyilsjky5g44vil6","name":"cli_test_hardware_security_modulesjcdnujh5xrj7aii5xu5a6ohrdlyilsjky5g44vil6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-08-26T13:17:53Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesiwsjhzqacgh5fxj5yw6wq47coxy4y4ky3257f6bps","name":"cli_test_hardware_security_modulesiwsjhzqacgh5fxj5yw6wq47coxy4y4ky3257f6bps","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-01T23:38:01Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesgqbmgamqribefwxvko6xyovdsdlt2of4z7pbgipyy","name":"cli_test_hardware_security_modulesgqbmgamqribefwxvko6xyovdsdlt2of4z7pbgipyy","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-02T06:20:29Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesksinwt3kozp6xz3bpkmavlwlxqurilx74zwa62pfm","name":"cli_test_hardware_security_modulesksinwt3kozp6xz3bpkmavlwlxqurilx74zwa62pfm","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-02T12:28:32Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesqgu6444mi6zop525s62fyk2auv3xqshhiju5mch5a","name":"cli_test_hardware_security_modulesqgu6444mi6zop525s62fyk2auv3xqshhiju5mch5a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-08T23:41:17Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idbdgbqb5vqnt25i4tt4rokvzfne3k664lklbulorqnmcth","name":"cli_test_lock_with_resource_idbdgbqb5vqnt25i4tt4rokvzfne3k664lklbulorqnmcth","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_three_level_resource_id","date":"2023-09-09T03:26:24Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_moduleshke75y4exqjtecjz67ymumav6cz6zdx6yq2d5h2dp","name":"cli_test_hardware_security_moduleshke75y4exqjtecjz67ymumav6cz6zdx6yq2d5h2dp","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-09T05:26:13Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesnari34pojtrj77gb3sspbntig4bn4nuv7gnv66yla","name":"cli_test_hardware_security_modulesnari34pojtrj77gb3sspbntig4bn4nuv7gnv66yla","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-09T12:54:47Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_vmprofileocwlnirnwgq7uapbz4it6rvkzwvsggyhrufkanhv3etangnc53y3yg4c6","name":"img_tmpl_vmprofileocwlnirnwgq7uapbz4it6rvkzwvsggyhrufkanhv3etangnc53y3yg4c6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_image_builder_vm_profile","date":"2023-09-16T10:29:20Z","module":"vm","DateCreated":"2023-09-16T10:31:03Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-clihgraq","name":"synapse-clihgraq","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sql_pool_audit_policy_logentry_eventhub","date":"2023-09-18T04:36:33Z","module":"synapse","Creator":"liwang3@microsoft.com","DateCreated":"2023-09-18T04:38:22Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesb3ebje7w6ucwpy24al5ttlrkmzqg7dcqhsin57fz4","name":"cli_test_hardware_security_modulesb3ebje7w6ucwpy24al5ttlrkmzqg7dcqhsin57fz4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-13T23:35:03Z","module":"hardware-security-modules","DateCreated":"2023-10-13T23:36:54Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modules3tiyo2tvg5qagd44skxnk3dyfoe5ktdjrx4fdk6dt","name":"cli_test_hardware_security_modules3tiyo2tvg5qagd44skxnk3dyfoe5ktdjrx4fdk6dt","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-14T05:07:58Z","module":"hardware-security-modules","DateCreated":"2023-10-14T05:09:45Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulespbyyjaam7razfb6thrwlb6bgiy34nkaahvnpctefp","name":"cli_test_hardware_security_modulespbyyjaam7razfb6thrwlb6bgiy34nkaahvnpctefp","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-14T12:43:48Z","module":"hardware-security-modules","DateCreated":"2023-10-14T12:44:22Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesg7ttld3xukyn7e5uagnuakkw4qyetspvjo5aexxlx","name":"cli_test_hardware_security_modulesg7ttld3xukyn7e5uagnuakkw4qyetspvjo5aexxlx","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-20T23:37:40Z","module":"hardware-security-modules","DateCreated":"2023-10-20T23:38:55Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids5mn4pfc53ihb3aw6rxg6l5hlbdqgtvwfnr5hwl6gyght","name":"cli_test_lock_commands_with_ids5mn4pfc53ihb3aw6rxg6l5hlbdqgtvwfnr5hwl6gyght","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_commands_with_ids","date":"2023-11-18T09:06:37Z","module":"resource","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-18T09:14:19Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxvzrag2j2nqopz4vhzngyniveppm4bcm4q2fflughyvdp677bmj64fvpzpbj","name":"cli_test_databoxvzrag2j2nqopz4vhzngyniveppm4bcm4q2fflughyvdp677bmj64fvpzpbj","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-11-25T22:41:43Z","module":"databox","DateCreated":"2023-11-25T22:42:47Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_idsn5q2e2xjagvhis3k2wb7cbvml2u4izdf3u2ft36hb7zp","name":"cli_test_lock_commands_with_idsn5q2e2xjagvhis3k2wb7cbvml2u4izdf3u2ft36hb7zp","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_commands_with_ids","date":"2023-12-02T11:01:26Z","module":"resource","DateCreated":"2023-12-02T11:03:19Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_alias6uqbw6cr2iz72xlfv3ih64myujvhdzjmm4ajcwgnutnbkni55gj7wewafq","name":"cli_test_eh_alias6uqbw6cr2iz72xlfv3ih64myujvhdzjmm4ajcwgnutnbkni55gj7wewafq","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-08T22:10:50Z","module":"eventhubs","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-08T22:11:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliasi5nulmrdgcpfkvlvuobpx2kpzw2jccbcguqn6pe75fwzqr35h3hujrt26y","name":"cli_test_sb_aliasi5nulmrdgcpfkvlvuobpx2kpzw2jccbcguqn6pe75fwzqr35h3hujrt26y","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-08T23:15:14Z","module":"servicebus","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-08T23:16:42Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox3mx3q44yrr74xnu2utfxojzigiltjyxbfh7zrjbc4fcnadgyuijgea2pwc5","name":"cli_test_databox3mx3q44yrr74xnu2utfxojzigiltjyxbfh7zrjbc4fcnadgyuijgea2pwc5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-09T01:23:25Z","module":"databox","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-09T01:27:51Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliaswvzjconrkey74czhzkn7m23546sff5k6xmvmgbkg5mpq6jr5ai5jtdgpxy","name":"cli_test_eh_aliaswvzjconrkey74czhzkn7m23546sff5k6xmvmgbkg5mpq6jr5ai5jtdgpxy","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-09T09:50:34Z","module":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliasaaimzhecctya4kyyznupdddf2roscj5f5s7cb5wbe2yemxuuz75mms7nw2","name":"cli_test_sb_aliasaaimzhecctya4kyyznupdddf2roscj5f5s7cb5wbe2yemxuuz75mms7nw2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-09T11:07:45Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxp3trwjolawec35motiosctcvekkbkmce42nzjqfro7hao23erpyvxtqtxl4","name":"cli_test_databoxp3trwjolawec35motiosctcvekkbkmce42nzjqfro7hao23erpyvxtqtxl4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-09T13:44:27Z","module":"databox","DateCreated":"2023-12-09T13:46:20Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliascwyud6azjlrf2i2uvjqzhk24e77d57q7jlxm2mewbfth73fcdemxtqoy3o","name":"cli_test_eh_aliascwyud6azjlrf2i2uvjqzhk24e77d57q7jlxm2mewbfth73fcdemxtqoy3o","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-15T22:10:27Z","module":"eventhubs","DateCreated":"2023-12-15T22:11:46Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliaspglbvgi2qhgqenyj6sokh4ehvifcpflaejsbnustlkdhluniph3x4rav6c","name":"cli_test_sb_aliaspglbvgi2qhgqenyj6sokh4ehvifcpflaejsbnustlkdhluniph3x4rav6c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-15T23:19:16Z","module":"servicebus","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-15T23:21:23Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxtt6imdodzprzugbwmwpziiqqu7lisj2lsqmtadaaehnhb3dlryoixlir3se","name":"cli_test_databoxtt6imdodzprzugbwmwpziiqqu7lisj2lsqmtadaaehnhb3dlryoixlir3se","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-16T01:17:56Z","module":"databox","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-16T01:18:51Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliasevnbuu2ntkfdnt4cjec2wvqejeasj7rwc5eiqdwzllnn5sitrnpo2cjvcy","name":"cli_test_eh_aliasevnbuu2ntkfdnt4cjec2wvqejeasj7rwc5eiqdwzllnn5sitrnpo2cjvcy","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-16T10:21:38Z","module":"eventhubs","DateCreated":"2023-12-16T10:22:52Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias5oxhm3gzw43x3mup7e64prj3mqyt5vi2dvl736jqblgpv4of3vlz5tls2q","name":"cli_test_sb_alias5oxhm3gzw43x3mup7e64prj3mqyt5vi2dvl736jqblgpv4of3vlz5tls2q","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-16T11:08:48Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxm7vgqpbxu6emgwlinpean4z55n2nt7c6i4zusy5xn7gnaqbs6orzwqthgub","name":"cli_test_databoxm7vgqpbxu6emgwlinpean4z55n2nt7c6i4zusy5xn7gnaqbs6orzwqthgub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-16T13:56:09Z","module":"databox","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-16T13:59:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliasgr3bayg7n6n4xo443ythxyfyaqdnxatncvlxo3qats3bwv7mmhzv3re6rb","name":"cli_test_eh_aliasgr3bayg7n6n4xo443ythxyfyaqdnxatncvlxo3qats3bwv7mmhzv3re6rb","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-16T20:44:15Z","module":"eventhubs","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-16T20:46:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliaseovh7o4hxb5cijsrcduzk2n2whtdmxq2vohmtlc4xgv6t236hhr5t5bsje","name":"cli_test_sb_aliaseovh7o4hxb5cijsrcduzk2n2whtdmxq2vohmtlc4xgv6t236hhr5t5bsje","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-16T21:49:14Z","module":"servicebus","DateCreated":"2023-12-16T21:50:42Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox5t7fnnuzm6p6i4pbwowmvjkmf2c3awcdokqhhqjo44qad6oxjk5gjn2vvoo","name":"cli_test_databox5t7fnnuzm6p6i4pbwowmvjkmf2c3awcdokqhhqjo44qad6oxjk5gjn2vvoo","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-16T23:43:19Z","module":"databox","DateCreated":"2023-12-16T23:44:49Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liwaRg","name":"liwaRg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DateCreated":"2023-12-21T11:53:07Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Creator":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","DateCreated":"2023-12-21T19:08:53Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azpslrg0ykayyv581","name":"azpslrg0ykayyv581","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DateCreated":"2023-12-21T19:16:54Z","Creator":"0438e4b5-05a4-46ae-a804-d059a85bc21e"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS","name":"DefaultResourceGroup-WUS","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Creator":"v-jingszhang@microsoft.com","DateCreated":"2023-12-22T01:42:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2zqk2ywbek2kniqyia4k63lljvsp4vkjnxk2fhouvredshzdv4","name":"connect_function_cross_rg2zqk2ywbek2kniqyia4k63lljvsp4vkjnxk2fhouvredshzdv4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2023-12-22T02:39:18Z","module":"application-insights"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rgpgwgmrqupyd3t7ldc7u32zwx5lpop6cb4lismnmk7s3ocdyz4q","name":"connect_function_cross_rgpgwgmrqupyd3t7ldc7u32zwx5lpop6cb4lismnmk7s3ocdyz4q","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2023-12-22T02:41:58Z","module":"application-insights","DateCreated":"2023-12-22T02:43:03Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"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":"2023-12-22T02:41:58Z","module":"application-insights","DateCreated":"2023-12-22T02:42:24Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2qpzs4qfbnjstrhprwgj5kuwvtvvmpjuwntslopoxe6daqwwbt","name":"connect_function_cross_rg2qpzs4qfbnjstrhprwgj5kuwvtvvmpjuwntslopoxe6daqwwbt","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2023-12-22T02:42:00Z","module":"application-insights","DateCreated":"2023-12-22T02:42:58Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG-ibt-24","name":"acctestRG-ibt-24","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907","name":"IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acctestRG-ibt-24/providers/Microsoft.VirtualMachineImages/imageTemplates/acctest-IBT-0710-2","tags":{"createdBy":"AzureVMImageBuilder","imageTemplateName":"acctest-IBT-0710-2","imageTemplateResourceGroupName":"acctestRG-ibt-24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_router7i5huw42zwou3aczqdcerbcubvy4a2yyto6kyqtakyhxgzwszdtv","name":"cli_test_virtual_router7i5huw42zwou3aczqdcerbcubvy4a2yyto6kyqtakyhxgzwszdtv","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-15T11:43:24Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_routeroh7t5sncdhzf5tz2pybikadld3aii24mjytfxnhefltdqd4w6djy","name":"cli_test_virtual_routeroh7t5sncdhzf5tz2pybikadld3aii24mjytfxnhefltdqd4w6djy","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-15T12:02:24Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_routerkavia6zlpypv4eb4df4yt6fqkczgl6f3oh6ceynvxvde4omwl7jk","name":"cli_test_virtual_routerkavia6zlpypv4eb4df4yt6fqkczgl6f3oh6ceynvxvde4omwl7jk","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-15T12:21:41Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fypurview","name":"fypurview","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview","name":"managed-rg-fypurview","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fypurview/providers/Microsoft.Purview/accounts/fypurview","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg","name":"azure-cli-test-file-handle-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2","name":"DefaultResourceGroup-WUS2","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2xdwdzkff7tdk6ctumudrb7xb2cv2rqij7zmiw3fxeh5k6nldehna22m4m32","name":"img_tmpl_basic_2xdwdzkff7tdk6ctumudrb7xb2cv2rqij7zmiw3fxeh5k6nldehna22m4m32","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-07T11:03:37Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcnqbveriigbeetmz5n6mk3gldxgfgkrpdzoanetznkfumzohrheswiua3jwrgracb","name":"clitest.rgcnqbveriigbeetmz5n6mk3gldxgfgkrpdzoanetznkfumzohrheswiua3jwrgracb","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T16:13:19Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia","name":"cloud-shell-storage-southeastasia","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lightning","name":"lightning","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc3unsnyjjzemygr7dgs6jgkt3gwf3miljcongbaiaigac5agrc2azpmwu4frstj3","name":"cli_test_dnc3unsnyjjzemygr7dgs6jgkt3gwf3miljcongbaiaigac5agrc2azpmwu4frstj3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-20T23:27:04Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncbc5ew7ppttwikqro6kojgieoo6yoqvd43sikgaj4l3ik6z7u6pblevk5c534l6w","name":"cli_test_dncbc5ew7ppttwikqro6kojgieoo6yoqvd43sikgaj4l3ik6z7u6pblevk5c534l6w","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-21T10:31:00Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncfnypyhlu4nx6h3q22sg4qodslhveynenwjxulquglrazgd7bpswn7ox4cy4y4y7","name":"cli_test_dncfnypyhlu4nx6h3q22sg4qodslhveynenwjxulquglrazgd7bpswn7ox4cy4y4y7","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-21T18:01:11Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncjnajjc4wevjysuwas4pdqfzjf2nfpvki4vjccuoqwuiusv4gau6zvhoydospthc","name":"cli_test_dncjnajjc4wevjysuwas4pdqfzjf2nfpvki4vjccuoqwuiusv4gau6zvhoydospthc","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-27T23:29:23Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncblswqsnmcf2ew6hqynwqdfdwadmohtm246hgbymdrwg5v54sstbkgw7trdahigd","name":"cli_test_dncblswqsnmcf2ew6hqynwqdfdwadmohtm246hgbymdrwg5v54sstbkgw7trdahigd","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-28T05:13:49Z","module":"dnc","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-10-28T05:14:30Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc74h3ew6bmn2gssaf6xu6ozllrzlrwers76f46tjcbyxrpt5p7lkekcm7tofgvht","name":"cli_test_dnc74h3ew6bmn2gssaf6xu6ozllrzlrwers76f46tjcbyxrpt5p7lkekcm7tofgvht","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-28T12:37:56Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesug47tacsjysgux7c7keguxawhqw6","name":"cli_test_cross_region_lb_address_pool_addressesug47tacsjysgux7c7keguxawhqw6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T19:26:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses6jp3wdtc7egbv3khh4iziutdl2hi","name":"cli_test_cross_region_lb_address_pool_addresses6jp3wdtc7egbv3khh4iziutdl2hi","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-01T15:52:20Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresseskstiqvvyyyihrtktegsauewfptv4","name":"cli_test_cross_region_lb_address_pool_addresseskstiqvvyyyihrtktegsauewfptv4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T05:08:02Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses54tgxooebhe64nvbhlbszo6rzhdk","name":"cli_test_cross_region_lb_address_pool_addresses54tgxooebhe64nvbhlbszo6rzhdk","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-04T18:47:14Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesv7m6kq332wdrylfadddb424ucgsq","name":"cli_test_cross_region_lb_address_pool_addressesv7m6kq332wdrylfadddb424ucgsq","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-05T05:26:41Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresseskjkqwodt6s6m6hod5dvinjcid3xv","name":"cli_test_cross_region_lb_address_pool_addresseskjkqwodt6s6m6hod5dvinjcid3xv","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-11T18:29:28Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesvhje2rsgm4rnyhejz2f6mrdrtnw4","name":"cli_test_cross_region_lb_address_pool_addressesvhje2rsgm4rnyhejz2f6mrdrtnw4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-18T19:22:53Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesqntc7x2m37kgxgjdtt773g7srp7o","name":"cli_test_cross_region_lb_address_pool_addressesqntc7x2m37kgxgjdtt773g7srp7o","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-25T19:16:04Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_loadbalance","name":"test_cli_loadbalance","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesio53jukz56bxsdilpnpghlsre6fx","name":"cli_test_cross_region_lb_address_pool_addressesio53jukz56bxsdilpnpghlsre6fx","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T19:05:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesea74zzxcod4vx6gqeq5ywsvspfix","name":"cli_test_cross_region_lb_address_pool_addressesea74zzxcod4vx6gqeq5ywsvspfix","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-08T16:00:44Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresseslsgl7rltczxyw47db7fwuqjmzhga","name":"cli_test_cross_region_lb_address_pool_addresseslsgl7rltczxyw47db7fwuqjmzhga","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-09T19:18:09Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesq3tvf37jm5oyjoxamobdcfp3hi3m","name":"cli_test_cross_region_lb_address_pool_addressesq3tvf37jm5oyjoxamobdcfp3hi3m","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-16T19:08:01Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesi2huyxdtfr5zbzopxaonwqf2efrw","name":"cli_test_cross_region_lb_address_pool_addressesi2huyxdtfr5zbzopxaonwqf2efrw","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-23T19:01:53Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesomd2td4qlisiqyhgiqtkwze4zaap","name":"cli_test_cross_region_lb_address_pool_addressesomd2td4qlisiqyhgiqtkwze4zaap","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T18:50:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesr27hecyfxa4gbteb7u446txrzg2v","name":"cli_test_cross_region_lb_address_pool_addressesr27hecyfxa4gbteb7u446txrzg2v","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-06T19:02:51Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesi2sgg5g73rlyl3vhyqdcpxvc5gwt","name":"cli_test_cross_region_lb_address_pool_addressesi2sgg5g73rlyl3vhyqdcpxvc5gwt","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-13T20:33:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesusl7vffknbcgyej4l3irpvnjaqa5","name":"cli_test_cross_region_lb_address_pool_addressesusl7vffknbcgyej4l3irpvnjaqa5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T05:28:12Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses7eeuueorazxwbgez7s7yi5f3jpkn","name":"cli_test_cross_region_lb_address_pool_addresses7eeuueorazxwbgez7s7yi5f3jpkn","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T17:43:29Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesumdvxyw3n4gz3pfrvglubqnpl6za","name":"cli_test_cross_region_lb_address_pool_addressesumdvxyw3n4gz3pfrvglubqnpl6za","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T19:22:25Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2","name":"rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east","name":"zhiyihuang-rg-euap-east","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest_resourcemover_collection_4tsykgqqavyattss4pmyohdpm34kwbodytp3p2jaag","name":"clitest_resourcemover_collection_4tsykgqqavyattss4pmyohdpm34kwbodytp3p2jaag","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-25T06:47:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg.testelasticsan.volumegroup4kbfxkw2zowtoule6vbix2kvgj65q22xy76bi7","name":"clitest.rg.testelasticsan.volumegroup4kbfxkw2zowtoule6vbix2kvgj65q22xy76bi7","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2023-01-16T05:15:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_o3gievirxf5xqyurkidjjnkrq7iacy4g3argjkpe5apzll2g6nfa4jnjz2","name":"test_nw_flow_log_o3gievirxf5xqyurkidjjnkrq7iacy4g3argjkpe5apzll2g6nfa4jnjz2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-07-28T20:12:01Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_syrgzzmn77g367w3g42v4lpxd2udh7kh2zhfqfvy3boubl53wygq5scilh","name":"test_nw_flow_log_syrgzzmn77g367w3g42v4lpxd2udh7kh2zhfqfvy3boubl53wygq5scilh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-07-28T20:16:08Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_ddkvaudkckpyy7giwwotuvtto7dnvrb7fa3e6bydj45ctorpf4fbkwvhyb","name":"test_nw_flow_log_ddkvaudkckpyy7giwwotuvtto7dnvrb7fa3e6bydj45ctorpf4fbkwvhyb","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-07-28T20:19:54Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_o3egjyhyuekrwdrkj2kajxejz2yiqvszu6dhnnpngyds7kdzfib6iug5vv","name":"test_nw_flow_log_o3egjyhyuekrwdrkj2kajxejz2yiqvszu6dhnnpngyds7kdzfib6iug5vv","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-04T20:02:28Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_rdcye7yurvrvgdtqzdhyglrs5la54zgwws3s3lforx27t5xzv66koiv2ca","name":"test_nw_flow_log_rdcye7yurvrvgdtqzdhyglrs5la54zgwws3s3lforx27t5xzv66koiv2ca","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-04T20:06:31Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_gl3t3uektvbbnfpowoxwz4etbbpqqtdkfletoppt2437s3qout3n5oty34","name":"test_nw_flow_log_gl3t3uektvbbnfpowoxwz4etbbpqqtdkfletoppt2437s3qout3n5oty34","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-04T20:12:56Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-rg","name":"cli-test-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-cli-test-db-create-yyhko6mu2w646","name":"databricks-rg-cli-test-db-create-yyhko6mu2w646","type":"Microsoft.Resources/resourceGroups","location":"centralus","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-rg/providers/Microsoft.Databricks/workspaces/cli-test-db-create","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_7i6uzdruatidfzk6fmmybxwztbmidq5pczklpmzmn4gtruqxwiorxnou4r","name":"test_nw_flow_log_7i6uzdruatidfzk6fmmybxwztbmidq5pczklpmzmn4gtruqxwiorxnou4r","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-11T20:08:12Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_r73gxq5itbztaslt4znozpzla763wvppaead3loit73tddhmwrmccd4k3u","name":"test_nw_flow_log_r73gxq5itbztaslt4znozpzla763wvppaead3loit73tddhmwrmccd4k3u","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-11T20:12:17Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_azg2ocdhhur5spregh37paypcjbjkxa6yn7uwvu3aivypdqjlzcedoxocq","name":"test_nw_flow_log_azg2ocdhhur5spregh37paypcjbjkxa6yn7uwvu3aivypdqjlzcedoxocq","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-11T20:16:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_n6a3givgy4ye6mbxfkfkn4kuxdioqmbyqcqcjxtrs4h4eagpmcmdbjmczf","name":"test_nw_flow_log_n6a3givgy4ye6mbxfkfkn4kuxdioqmbyqcqcjxtrs4h4eagpmcmdbjmczf","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-18T21:32:20Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_7xsq3zuyr7snbwzwlu7crwxtsubun47zcs57m6ixqyneylyhclxvtzytym","name":"test_nw_flow_log_7xsq3zuyr7snbwzwlu7crwxtsubun47zcs57m6ixqyneylyhclxvtzytym","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-18T21:36:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_jlydgrmvamqer7hcn2ubqilhkgop5kghjqk4mn2yco2gjn62x6mtszfz2v","name":"test_nw_flow_log_jlydgrmvamqer7hcn2ubqilhkgop5kghjqk4mn2yco2gjn62x6mtszfz2v","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T20:38:38Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_7p2hdetxeh6ekkjovisifva2zcfr3uzevzs3nyfjtx57iebudjdb2rjkui","name":"test_nw_flow_log_7p2hdetxeh6ekkjovisifva2zcfr3uzevzs3nyfjtx57iebudjdb2rjkui","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T20:42:42Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_zrsrbhasf4kr2hp72wi7gkylasb6pkm2rkbz7wwalnwrze4w23kvsl3eh2","name":"test_nw_flow_log_zrsrbhasf4kr2hp72wi7gkylasb6pkm2rkbz7wwalnwrze4w23kvsl3eh2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T21:01:41Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_pj6gwmzpqcwclkeypo7ltpsts57ko5yfhkuovfeggpyk7vipw5acsv3hd3","name":"test_nw_flow_log_pj6gwmzpqcwclkeypo7ltpsts57ko5yfhkuovfeggpyk7vipw5acsv3hd3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-28T15:32:09Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_pfhoualpznynfxeazy3tunetmi3b5bwdqihdi4mzmrydvtvp2osp3j4ozh","name":"test_nw_flow_log_pfhoualpznynfxeazy3tunetmi3b5bwdqihdi4mzmrydvtvp2osp3j4ozh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-28T15:39:05Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_faqx72so3yllolwt5tqmb5u6hrnl7zb4hukt54kycyop3dqgjogpfstgt2","name":"test_nw_flow_log_faqx72so3yllolwt5tqmb5u6hrnl7zb4hukt54kycyop3dqgjogpfstgt2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-28T15:48:47Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_jx3adqdjp2p4moubhvlavto2kl7uz7pnh4kfbwoaulb75wakgiopcem4pm","name":"test_nw_flow_log_jx3adqdjp2p4moubhvlavto2kl7uz7pnh4kfbwoaulb75wakgiopcem4pm","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-09-01T20:29:55Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_bu3t2d5c7uxbtibjbbava42eqv3romeooz43ttqltl74bmokprc4kpvvry","name":"test_nw_flow_log_bu3t2d5c7uxbtibjbbava42eqv3romeooz43ttqltl74bmokprc4kpvvry","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-09-01T20:35:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_2zm7xy5a23hga5f6drru7yilehfsjruhuu2apmlkfqugluqw4xlwklb2gz","name":"test_nw_flow_log_2zm7xy5a23hga5f6drru7yilehfsjruhuu2apmlkfqugluqw4xlwklb2gz","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-09-01T20:39:43Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgreyqbrfgy2","name":"clitest.rgreyqbrfgy2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-08-25T22:07:37Z","module":"backup"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestsasencode","name":"rgtestsasencode","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Creator":"zhiyihuang@microsoft.com","DateCreated":"2023-09-21T03:11:06Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2tjbcqep6","name":"clitest.rgd2tjbcqep6","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-09-23T12:03:50Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-09-23T12:04:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest_resourcemover_collection_uyov3cg3owmp2ciipxyioiqosqv6hjhr7om26cvz4c","name":"clitest_resourcemover_collection_uyov3cg3owmp2ciipxyioiqosqv6hjhr7om26cvz4c","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_resourcemover_movecollection_e2e","date":"2023-09-29T23:56:01Z","module":"resource-mover","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-09-29T23:57:57Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2obenjrzq","name":"clitest.rgg2obenjrzq","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-10-20T22:07:36Z","module":"backup","DateCreated":"2023-10-20T22:11:41Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgokqv6c4rsk","name":"clitest.rgokqv6c4rsk","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-03T22:07:52Z","module":"backup","DateCreated":"2023-11-03T22:09:07Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5cskybhs5t","name":"clitest.rg5cskybhs5t","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-03T22:07:52Z","module":"backup","DateCreated":"2023-11-03T22:10:27Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt3vn32jjvx","name":"clitest.rgt3vn32jjvx","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-03T22:07:52Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-03T22:12:03Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtqfrcckbao","name":"clitest.rgtqfrcckbao","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_unregister_container","date":"2023-11-03T22:21:10Z","module":"backup","DateCreated":"2023-11-03T22:22:25Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbj3bo7hftp","name":"clitest.rgbj3bo7hftp","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_protection","date":"2023-11-03T22:24:41Z","module":"backup","DateCreated":"2023-11-03T22:26:05Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbqxjasetow","name":"clitest.rgbqxjasetow","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_item","date":"2023-11-03T22:39:21Z","module":"backup","DateCreated":"2023-11-03T22:46:20Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgis7xzkwbtr","name":"clitest.rgis7xzkwbtr","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-11-03T22:51:31Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-03T22:53:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6thpbekg5","name":"clitest.rgn6thpbekg5","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-04T04:20:22Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:22:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4txubjxotd","name":"clitest.rg4txubjxotd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-04T04:20:22Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:21:42Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtwlcxjwue2","name":"clitest.rgtwlcxjwue2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-04T04:20:22Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:21:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyxwezgweu","name":"clitest.rgmyxwezgweu","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_unregister_container","date":"2023-11-04T04:34:18Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:36:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2mgdbyshkx","name":"clitest.rg2mgdbyshkx","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_protection","date":"2023-11-04T04:38:49Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:39:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrv3uv2idwk","name":"clitest.rgrv3uv2idwk","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_item","date":"2023-11-04T04:53:15Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:55:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvblzahd55t","name":"clitest.rgvblzahd55t","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-11-04T05:04:03Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T05:06:07Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggdgjgjdasf","name":"clitest.rggdgjgjdasf","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-04T12:31:12Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T12:34:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3nqcqiy722","name":"clitest.rg3nqcqiy722","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_restore","date":"2023-11-04T12:31:12Z","module":"backup","DateCreated":"2023-11-04T12:33:12Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsoqew7nra","name":"clitest.rgtsoqew7nra","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-04T12:31:12Z","module":"backup","DateCreated":"2023-11-04T12:36:41Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggpdwmiq7wd","name":"clitest.rggpdwmiq7wd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-04T12:31:13Z","module":"backup","DateCreated":"2023-11-04T12:34:19Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc2odxzggkj","name":"clitest.rgc2odxzggkj","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-11-04T12:36:56Z","module":"backup","DateCreated":"2023-11-04T12:37:26Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgulrqhku67p","name":"clitest.rgulrqhku67p","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_unregister_container","date":"2023-11-04T12:43:20Z","module":"backup","DateCreated":"2023-11-04T12:45:21Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgayywgjefz2","name":"clitest.rgayywgjefz2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_protection","date":"2023-11-04T12:48:45Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T12:49:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglylmol3cvc","name":"clitest.rglylmol3cvc","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_item","date":"2023-11-04T13:03:19Z","module":"backup","DateCreated":"2023-11-04T13:06:38Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg5cndsh6ix","name":"clitest.rgg5cndsh6ix","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-11T18:07:28Z","module":"backup","DateCreated":"2023-11-11T18:10:24Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjslj57okpd","name":"clitest.rgjslj57okpd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-17T22:07:58Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-17T22:10:07Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2uaeroy3aw","name":"clitest.rg2uaeroy3aw","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-24T22:08:32Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-24T22:11:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghz74qea6yd","name":"clitest.rghz74qea6yd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-25T19:44:59Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-25T19:46:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3vlq57hidw","name":"clitest.rg3vlq57hidw","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-25T19:44:59Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-25T19:47:03Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapseworkspace-managedrg-e4b5ae81-d4ea-4aa5-8f10-efe808354e04","name":"synapseworkspace-managedrg-e4b5ae81-d4ea-4aa5-8f10-efe808354e04","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/azpslrg0bt2bxi5pb/providers/Microsoft.Synapse/workspaces/azpsl24o26uz6rw","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testkvv2rg","name":"testkvv2rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-live-test","name":"azure-cli-live-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azureCliBCD","name":"azureCliBCD","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjdigo3pce3","name":"clitest.rgjdigo3pce3","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-12-08T22:53:39Z","module":"backup","DateCreated":"2023-12-08T22:58:20Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureClientToolsAutomation","name":"AzureClientToolsAutomation","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liwang3_rg_7651","name":"liwang3_rg_7651","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg","name":"bez-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgteststorageoverwrite","name":"rgteststorageoverwrite","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc5jl3bopnl2kpvghibnjxnaucmyqnoodh4wh7yyybajv2eojc5fett4englsag7x","name":"cli_test_dnc5jl3bopnl2kpvghibnjxnaucmyqnoodh4wh7yyybajv2eojc5fett4englsag7x","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-04T23:32:59Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncuxnwsvi7s5hrsltbxe3zemnniko4kndgyt3zfbn3pa7l2xfs7coouw2kuns6iu5","name":"cli_test_dncuxnwsvi7s5hrsltbxe3zemnniko4kndgyt3zfbn3pa7l2xfs7coouw2kuns6iu5","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-05T11:27:20Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncg2ixf7iqcvizv2olu5xknibgrp3pfrivfmuq5z4t46tedvonex3v7js24tcgbbl","name":"cli_test_dncg2ixf7iqcvizv2olu5xknibgrp3pfrivfmuq5z4t46tedvonex3v7js24tcgbbl","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-05T17:47:13Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncx4ywr3abo3b2alssrwdxo3e4o5xpqqwywap5xcwp5zkcxe3epktmujcwaqljbdx","name":"cli_test_dncx4ywr3abo3b2alssrwdxo3e4o5xpqqwywap5xcwp5zkcxe3epktmujcwaqljbdx","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-11T23:37:53Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncxnfd5sundygkicgizn7eqiucyena6jkfdnlv7v2us5rhanrel5pzwiklxg6kofm","name":"cli_test_dncxnfd5sundygkicgizn7eqiucyena6jkfdnlv7v2us5rhanrel5pzwiklxg6kofm","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-12T06:18:14Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncgkamqpnvx4o7seywrwgdoghfln73635pu7r6nbnoze4biw7fmb55xaxwabulg3u","name":"cli_test_dncgkamqpnvx4o7seywrwgdoghfln73635pu7r6nbnoze4biw7fmb55xaxwabulg3u","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-12T13:46:42Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncap777dhibjwlqolcp6qr57krtrk4chwmovhufybpvy5lazjfnjviz2xauaimbda","name":"cli_test_dncap777dhibjwlqolcp6qr57krtrk4chwmovhufybpvy5lazjfnjviz2xauaimbda","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-18T23:27:48Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwh4yhydrd4rt3us3wjsj4djaubix7psmbmrssbj5s5s7l24dc7bkotvvvn2kybz","name":"cli_test_dncwh4yhydrd4rt3us3wjsj4djaubix7psmbmrssbj5s5s7l24dc7bkotvvvn2kybz","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-19T06:24:13Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncaabncwvgbsh7rj4sxuuphr4hbhu26fax5nyzzbqu2xxumsejxc6l3ejw5skycdg","name":"cli_test_dncaabncwvgbsh7rj4sxuuphr4hbhu26fax5nyzzbqu2xxumsejxc6l3ejw5skycdg","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-19T13:21:16Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc6a5yhhs773itx26zqgwyfs6sqapz7nfyf3bkthuxz3twasgja73frucqy2ulist","name":"cli_test_dnc6a5yhhs773itx26zqgwyfs6sqapz7nfyf3bkthuxz3twasgja73frucqy2ulist","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-25T23:32:38Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc4udv3vom5y743c3njnejw3vvlvvwedju667ct6gknjqptqixdz6mnucmvhkuvei","name":"cli_test_dnc4udv3vom5y743c3njnejw3vvlvvwedju667ct6gknjqptqixdz6mnucmvhkuvei","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-26T06:23:37Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncg3pdldwnv5qjz5xiicpplwjrf5pkid7wwb2dm7jbqu24we7togqimrryzyisdp2","name":"cli_test_dncg3pdldwnv5qjz5xiicpplwjrf5pkid7wwb2dm7jbqu24we7togqimrryzyisdp2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-26T13:04:35Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncvaend3thhblgkiwjdc2qpjbk5c2lh47qecsf732iwtyloefzmtbmpaghuqyk7l3","name":"cli_test_dncvaend3thhblgkiwjdc2qpjbk5c2lh47qecsf732iwtyloefzmtbmpaghuqyk7l3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-01T23:27:34Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncymyc6nakzlyfk7vm5omlqvjopget64oammuq2bnwuraw2c7ycjvjmrhm2wozeha","name":"cli_test_dncymyc6nakzlyfk7vm5omlqvjopget64oammuq2bnwuraw2c7ycjvjmrhm2wozeha","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-02T06:10:45Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncqffjoh6biu3v62fqdpy6ysi75dx2zrkmjjeahbyy3mrmv2gx2o6iw255izaaulh","name":"cli_test_dncqffjoh6biu3v62fqdpy6ysi75dx2zrkmjjeahbyy3mrmv2gx2o6iw255izaaulh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-02T12:18:40Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc536l4cgmbarzwgdein2s575dvfiejrph3sn6dpvgmlwhshafoi4sjfjtw4luyxq","name":"cli_test_dnc536l4cgmbarzwgdein2s575dvfiejrph3sn6dpvgmlwhshafoi4sjfjtw4luyxq","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-08T23:31:38Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncofixjmxvscno3mx2tlbskz6u4ddta5qgbtel3vieyv5pfwqbfm4ztsx4m25up4l","name":"cli_test_dncofixjmxvscno3mx2tlbskz6u4ddta5qgbtel3vieyv5pfwqbfm4ztsx4m25up4l","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-09T05:15:34Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncnstewfv6xoovl5shcaowmkmptmxkoifgvxkyqlnnmeor2fsamxftfqomau6jamn","name":"cli_test_dncnstewfv6xoovl5shcaowmkmptmxkoifgvxkyqlnnmeor2fsamxftfqomau6jamn","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-09T12:44:55Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncsybo5fxnm6sfntuleg4zagnj6sbqxvz47n6pczvsrfubdazsy7gb3hltwwh6jfk","name":"cli_test_dncsybo5fxnm6sfntuleg4zagnj6sbqxvz47n6pczvsrfubdazsy7gb3hltwwh6jfk","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-15T23:34:36Z","module":"dnc","DateCreated":"2023-09-15T23:35:43Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwq2uqs3i6q4qicbd4e2qbxund7v3iofmcm3ljrcmmrisfqosbnfzlfua55ogmzt","name":"cli_test_dncwq2uqs3i6q4qicbd4e2qbxund7v3iofmcm3ljrcmmrisfqosbnfzlfua55ogmzt","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-16T05:14:16Z","module":"dnc","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-09-16T05:15:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncakhszsfxnnh62ognc4x6u5jqcwbog5wpwl32q2zyxcwsci7g2tifawzg3rfkmew","name":"cli_test_dncakhszsfxnnh62ognc4x6u5jqcwbog5wpwl32q2zyxcwsci7g2tifawzg3rfkmew","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-16T11:25:58Z","module":"dnc","DateCreated":"2023-09-16T11:27:48Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgteststorageentity","name":"rgteststorageentity","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shiying-rg","name":"shiying-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"lock":"allow"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutoTagFunctionAppRG","name":"AutoTagFunctionAppRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DateCreated":"2023-09-06","Creator":"shiyingchen@microsoft.com","lock":"allow"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapseworkspace-managedrg-6954375f-bd5f-4c3d-8688-6b30f253ddc8","name":"synapseworkspace-managedrg-6954375f-bd5f-4c3d-8688-6b30f253ddc8","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/synapse-clihgraq/providers/Microsoft.Synapse/workspaces/clitestvtvug2weg","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azClientToolsAssistant-rg","name":"azClientToolsAssistant-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"created-by":"teamsfx","Creator":"shiyingchen@microsoft.com","DateCreated":"2023-09-26T02:39:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxaadjj7uigrw4k3szislue75vdbxbdul4nt5zksv2fun5kqcsozxkr3dbwpegyodp","name":"clitest.rgxaadjj7uigrw4k3szislue75vdbxbdul4nt5zksv2fun5kqcsozxkr3dbwpegyodp","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_file_system","date":"2023-10-08T04:01:52Z","module":"qumulo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghmhp2yfnt6fci6yrvtb2li2pddj2xiyfkyzjc6bxbaawo4743o4uuuahbruklxwp2","name":"clitest.rghmhp2yfnt6fci6yrvtb2li2pddj2xiyfkyzjc6bxbaawo4743o4uuuahbruklxwp2","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_file_system","date":"2023-10-09T02:54:51Z","module":"qumulo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nori-insights","name":"nori-insights","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DateCreated":"2023-10-12T08:27:19Z","Creator":"norizhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking","name":"Default-Networking","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup","name":"myResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_rules_with_ipgroupsqiervqkqdl6gyu4szgpwbyiw7zx3ucbo","name":"cli_test_azure_firewall_rules_with_ipgroupsqiervqkqdl6gyu4szgpwbyiw7zx3ucbo","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-04-15T03:15:42Z","StorageType":"Standard_LRS","type":"test","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_vpshzlob7c63iuglneagoxjxa45dqn6eoglhf37oo5cms","name":"cli_netappfiles_test_snapshot_vpshzlob7c63iuglneagoxjxa45dqn6eoglhf37oo5cms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-10T06:47:57Z","StorageType":"Standard_LRS","type":"test","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test","name":"sdk-wus2-rg-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved","name":"AzureSDKTest_reserved","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg","name":"feng-cli-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg","name":"yu-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mixed_realitygv2l3elh76a7brm66drgektfyzfsijxog6smmqzg6dnn2r7ofuf6c","name":"cli_test_mixed_realitygv2l3elh76a7brm66drgektfyzfsijxog6smmqzg6dnn2r7ofuf6c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T22:15:53Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg","name":"azure-cli-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_rules_with_ipgroupse4upfibqoujmdn4odvtgrbuvqqgdvwd7","name":"cli_test_azure_firewall_rules_with_ipgroupse4upfibqoujmdn4odvtgrbuvqqgdvwd7","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T02:24:44Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '118278' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Dec 2023 02:43:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://appinsights.azureedge.net/portal/regionMapping.json - response: - body: - string: "{\n \"regions\": {\n \"centralus\": {\n \"geo\"\ - : \"unitedstates\",\n \"pairedRegions\": [\n \"\ - eastus2\",\n \"eastus\"\n ],\n \"laRegionCode\"\ - : \"CUS\"\n },\n \"eastus2\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"centralus\",\n \ - \ \"eastus\"\n ],\n \"laRegionCode\": \"\ - EUS2\"\n },\n \"eastus\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"westus\"\n \ - \ ],\n \"laRegionCode\": \"EUS\"\n },\n \"northcentralus\"\ - : {\n \"geo\": \"unitedstates\",\n \"pairedRegions\"\ - : [\n \"southcentralus\"\n ],\n \"laRegionCode\"\ - : \"NCUS\"\n },\n \"southcentralus\": {\n \"geo\"\ - : \"unitedstates\",\n \"pairedRegions\": [\n \"\ - northcentralus\"\n ],\n \"laRegionCode\": \"SCUS\"\n\ - \ },\n \"westus2\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"westcentralus\"\n \ - \ ],\n \"laRegionCode\": \"WUS2\"\n },\n \ - \ \"westus3\": {\n \"geo\": \"unitedstates\",\n \"\ - pairedRegions\": [\n \"westus2\"\n ],\n \ - \ \"laRegionCode\": \"USW3\"\n },\n \"westcentralus\": {\n\ - \ \"geo\": \"unitedstates\",\n \"pairedRegions\": [\n\ - \ \"westus2\"\n ],\n \"laRegionCode\"\ - : \"WCUS\"\n },\n \"westus\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"eastus\"\n \ - \ ],\n \"laRegionCode\": \"WUS\"\n },\n \"canadacentral\"\ - : {\n \"geo\": \"canada\",\n \"pairedRegions\": [\n\ - \ \"canadaeast\"\n ],\n \"laRegionCode\"\ - : \"CCAN\"\n },\n \"canadaeast\": {\n \"geo\": \"\ - canada\",\n \"pairedRegions\": [\n \"canadacentral\"\ - \n ],\n \"laRegionCode\": \"\"\n },\n \ - \ \"brazilsouth\": {\n \"geo\": \"brazil\",\n \"pairedRegions\"\ - : [\n \"southcentralus\"\n ],\n \"laRegionCode\"\ - : \"CQ\"\n },\n \"eastasia\": {\n \"geo\": \"asiapacific\"\ - ,\n \"pairedRegions\": [\n \"southeastasia\"\n \ - \ ],\n \"laRegionCode\": \"EA\"\n },\n \ - \ \"southeastasia\": {\n \"geo\": \"asiapacific\",\n \ - \ \"pairedRegions\": [\n \"eastasia\"\n ],\n \ - \ \"laRegionCode\": \"SEA\"\n },\n \"australiacentral\"\ - : {\n \"geo\": \"australia\",\n \"pairedRegions\": [\n\ - \ \"australiacentral2\",\n \"australiaeast\"\ - \n ],\n \"laRegionCode\": \"CAU\"\n },\n \ - \ \"australiacentral2\": {\n \"geo\": \"australia\",\n \ - \ \"pairedRegions\": [\n \"australiacentral\",\n \ - \ \"australiaeast\"\n ],\n \"laRegionCode\"\ - : \"CBR2\"\n },\n \"australiaeast\": {\n \"geo\"\ - : \"australia\",\n \"pairedRegions\": [\n \"australiasoutheast\"\ - \n ],\n \"laRegionCode\": \"EAU\"\n },\n \ - \ \"australiasoutheast\": {\n \"geo\": \"australia\",\n \ - \ \"pairedRegions\": [\n \"australiaeast\"\n \ - \ ],\n \"laRegionCode\": \"SEAU\"\n },\n \"chinaeast\"\ - : {\n \"geo\": \"china\",\n \"pairedRegions\": [\n \ - \ \"chinanorth\",\n \"chinaeast2\"\n \ - \ ],\n \"laRegionCode\": \"\"\n },\n \"chinanorth\"\ - : {\n \"geo\": \"china\",\n \"pairedRegions\": [\n \ - \ \"chinaeast\",\n \"chinaeast2\"\n \ - \ ],\n \"laRegionCode\": \"\"\n },\n \"chinaeast2\"\ - : {\n \"geo\": \"china\",\n \"pairedRegions\": [\n \ - \ \"chinanorth2\"\n ],\n \"laRegionCode\"\ - : \"CNE2\"\n },\n \"chinanorth2\": {\n \"geo\": \"\ - china\",\n \"pairedRegions\": [\n \"chinaeast2\"\ - \n ],\n \"laRegionCode\": \"\"\n },\n \ - \ \"chinaeast3\": {\n \"geo\": \"china\",\n \"pairedRegions\"\ - : [\n \"chinanorth3\"\n ],\n \"laRegionCode\"\ - : \"CNE3\"\n },\n \"chinanorth3\": {\n \"geo\": \"\ - china\",\n \"pairedRegions\": [\n \"chinaeast3\"\ - \n ],\n \"laRegionCode\": \"CNN3\"\n },\n \ - \ \"centralindia\": {\n \"geo\": \"india\",\n \"\ - pairedRegions\": [\n \"southindia\"\n ],\n \ - \ \"laRegionCode\": \"CID\"\n },\n \"southindia\": {\n\ - \ \"geo\": \"india\",\n \"pairedRegions\": [\n \ - \ \"centralindia\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"westindia\": {\n \"geo\": \"india\"\ - ,\n \"pairedRegions\": [\n \"southindia\",\n \ - \ \"centralindia\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"jioindiacentral\": {\n \"geo\": \"\ - india\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"JINC\"\n },\n \"jioindiawest\": {\n \"geo\":\ - \ \"india\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"JINW\"\n },\n \"japaneast\": {\n \"geo\": \"\ - japan\",\n \"pairedRegions\": [\n \"japanwest\"\n\ - \ ],\n \"laRegionCode\": \"EJP\"\n },\n \ - \ \"japanwest\": {\n \"geo\": \"japan\",\n \"pairedRegions\"\ - : [\n \"japaneast\"\n ],\n \"laRegionCode\"\ - : \"OS\"\n },\n \"koreacentral\": {\n \"geo\": \"\ - korea\",\n \"pairedRegions\": [\n \"koreasouth\"\ - \n ],\n \"laRegionCode\": \"SE\"\n },\n \ - \ \"koreasouth\": {\n \"geo\": \"korea\",\n \"pairedRegions\"\ - : [\n \"koreacentral\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"northeurope\": {\n \"geo\": \"europe\"\ - ,\n \"pairedRegions\": [\n \"westeurope\"\n \ - \ ],\n \"laRegionCode\": \"NEU\"\n },\n \"\ - westeurope\": {\n \"geo\": \"europe\",\n \"pairedRegions\"\ - : [\n \"northeurope\"\n ],\n \"laRegionCode\"\ - : \"WEU\"\n },\n \"francecentral\": {\n \"geo\":\ - \ \"france\",\n \"pairedRegions\": [\n \"francesouth\"\ - \n ],\n \"laRegionCode\": \"PAR\"\n },\n \ - \ \"francesouth\": {\n \"geo\": \"france\",\n \"\ - pairedRegions\": [\n \"francecentral\"\n ],\n \ - \ \"laRegionCode\": \"\"\n },\n \"uksouth\": {\n \ - \ \"geo\": \"unitedkingdom\",\n \"pairedRegions\": [\n\ - \ \"ukwest\"\n ],\n \"laRegionCode\"\ - : \"SUK\"\n },\n \"ukwest\": {\n \"geo\": \"unitedkingdom\"\ - ,\n \"pairedRegions\": [\n \"uksouth\"\n \ - \ ],\n \"laRegionCode\": \"WUK\"\n },\n \"germanycentral\"\ - : {\n \"geo\": \"germany\",\n \"pairedRegions\": [\n\ - \ \"germanynortheast\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"germanynortheast\": {\n \"geo\":\ - \ \"germany\",\n \"pairedRegions\": [\n \"germanycentral\"\ - \n ],\n \"laRegionCode\": \"\"\n },\n \ - \ \"germanywestcentral\": {\n \"geo\": \"germany\",\n \ - \ \"pairedRegions\": [\n \"germanynorth\"\n ],\n\ - \ \"laRegionCode\": \"DEWC\"\n },\n \"germanynorth\"\ - : {\n \"geo\": \"germany\",\n \"pairedRegions\": [\n\ - \ \"germanywestcentral\"\n ],\n \"laRegionCode\"\ - : \"DEN\"\n },\n \"switzerlandwest\": {\n \"geo\"\ - : \"switzerland\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"CHW\"\n },\n \"switzerlandnorth\": {\n \"geo\"\ - : \"switzerland\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"CHN\"\n },\n \"swedencentral\": {\n \"geo\":\ - \ \"sweden\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"SEC\"\n },\n \"swedensouth\": {\n \"geo\": \"\ - sweden\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"SES\"\n },\n \"norwaywest\": {\n \"geo\": \"\ - norway\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"\"\n },\n \"norwayeast\": {\n \"geo\": \"norway\"\ - ,\n \"pairedRegions\": [],\n \"laRegionCode\": \"\"\n\ - \ },\n \"southafricanorth\": {\n \"geo\": \"africa\"\ - ,\n \"pairedRegions\": [\n \"southafricawest\"\n\ - \ ],\n \"laRegionCode\": \"JNB\"\n },\n \ - \ \"southafricawest\": {\n \"geo\": \"africa\",\n \ - \ \"pairedRegions\": [\n \"southafricanorth\"\n \ - \ ],\n \"laRegionCode\": \"CPT\"\n },\n \"uaenorth\"\ - : {\n \"geo\": \"unitedarabemirates\",\n \"pairedRegions\"\ - : [],\n \"laRegionCode\": \"\"\n },\n \"uaecentral\"\ - : {\n \"geo\": \"unitedarabemirates\",\n \"pairedRegions\"\ - : [],\n \"laRegionCode\": \"AUH\"\n },\n \"qatarcentral\"\ - : {\n \"geo\": \"qatar\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"QAC\"\n },\n \"polandcentral\"\ - : {\n \"geo\": \"poland\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"PLC\"\n },\n \"israelcentral\"\ - : {\n \"geo\": \"israel\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"ILC\"\n },\n \"italynorth\"\ - : {\n \"geo\": \"italy\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"ITN\"\n },\n \"usdodcentral\"\ - : {\n \"geo\": \"azuregovernment\",\n \"pairedRegions\"\ - : [\n \"usdodeast\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"usdodeast\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usdodcentral\"\n \ - \ ],\n \"laRegionCode\": \"\"\n },\n \"\ - usgovarizona\": {\n \"geo\": \"azuregovernment\",\n \ - \ \"pairedRegions\": [\n \"usgovtexas\"\n ],\n \ - \ \"laRegionCode\": \"PHX\"\n },\n \"usgoviowa\":\ - \ {\n \"geo\": \"azuregovernment\",\n \"pairedRegions\"\ - : [\n \"usgovvirginia\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"usgovtexas\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usgovarizona\"\n \ - \ ],\n \"laRegionCode\": \"SN\"\n },\n \"\ - usgovvirginia\": {\n \"geo\": \"azuregovernment\",\n \ - \ \"pairedRegions\": [\n \"usgoviowa\",\n \"\ - usgovarizona\"\n ],\n \"laRegionCode\": \"USBN1\"\n\ - \ },\n \"ussecwest\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usseceast\"\n \ - \ ],\n \"laRegionCode\": \"RXW\"\n },\n \"\ - usseceast\": {\n \"geo\": \"azuregovernment\",\n \"\ - pairedRegions\": [\n \"ussecwest\"\n ],\n \ - \ \"laRegionCode\": \"RXE\"\n },\n \"usnatwest\": {\n \ - \ \"geo\": \"azuregovernment\",\n \"pairedRegions\":\ - \ [\n \"usnateast\"\n ],\n \"laRegionCode\"\ - : \"EXW\"\n },\n \"usnateast\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usnatwest\"\n \ - \ ],\n \"laRegionCode\": \"EXE\"\n }\n }\n}" - headers: - access-control-allow-origin: - - '*' - access-control-expose-headers: - - x-ms-request-id,Server,x-ms-version,Content-Type,Last-Modified,ETag,x-ms-lease-status,x-ms-blob-type,Content-Length,Date,Transfer-Encoding - connection: - - keep-alive - content-length: - - '11575' - content-type: - - application/json - date: - - Fri, 22 Dec 2023 02:43:11 GMT - last-modified: - - Thu, 24 Aug 2023 23:50:38 GMT - transfer-encoding: - - chunked - vary: - - Accept-Encoding - - Accept-Encoding - - Accept-Encoding - - Accept-Encoding - x-azure-ref: - - 20231222T024311Z-yywudwsc192w5bt4bb9x7mka4g000000077000000000xubr - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - 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.55.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"5887816a-c79e-4479-937f-032bc438c056","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-14T08:29:52.2948331Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-14T08:29:52.2948331Z","modifiedDate":"2023-12-22T01:36:50.5468296Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0560f5-0000-0700-0000-6584e8320000\""}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '980' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Dec 2023 02:43:11 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "web", "properties": {"Application_Type": - "web", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '307' - Content-Type: - - application/json - ParameterSetName: - - -g -n --plan -s --functions-version --runtime - User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestfunction000004?api-version=2020-02-02-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/clitestfunction000004\"\ - ,\r\n \"name\": \"clitestfunction000004\",\r\n \"type\": \"microsoft.insights/components\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e42e0306-0000-0200-0000-6584f7c30000\\\"\",\r\n \"\ - properties\": {\r\n \"ApplicationId\": \"clitestfunction000004\",\r\n \ - \ \"AppId\": \"1f12878e-fce9-48d9-8edf-7c6cb9c4eb63\",\r\n \"Application_Type\"\ - : \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": null,\r\n\ - \ \"InstrumentationKey\": \"50855052-e84a-4fd8-9f85-b6abce613ad3\",\r\n\ - \ \"ConnectionString\": \"InstrumentationKey=50855052-e84a-4fd8-9f85-b6abce613ad3;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestfunction000004\",\r\n \"CreationDate\": \"\ - 2023-12-22T02:43:15.1156087+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/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS\"\ - ,\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: - - '1486' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Dec 2023 02:43:15 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -s --functions-version --runtime - User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-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-157.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,"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":"2023-12-22T02:43:04.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.82.255.132","possibleInboundIpAddresses":"40.82.255.132","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-157.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,40.82.255.132","possibleOutboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,20.184.242.129,20.184.242.157,20.184.243.181,20.184.243.194,20.184.243.214,20.184.243.231,20.184.243.240,20.184.243.254,20.184.244.7,20.184.244.22,20.184.244.46,20.184.244.62,20.184.244.81,20.184.244.93,20.184.244.106,20.184.244.116,20.184.244.119,20.184.244.123,20.184.244.124,20.184.244.130,20.184.244.141,52.157.32.33,52.157.32.35,52.157.32.39,40.82.255.132","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-157","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' - headers: - cache-control: - - no-cache - content-length: - - '6888' - content-type: - - application/json - date: - - Fri, 22 Dec 2023 02:43:16 GMT - etag: - - '"1DA3480968E0900"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -1747,13 +1312,13 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}' + 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=="}}' headers: cache-control: - no-cache @@ -1762,25 +1327,23 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:18 GMT + - Mon, 18 Mar 2024 09:03:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: C6803B90131E4816BF89A4CD50DD46FE Ref B: MAA201060513009 Ref C: 2024-03-18T09:02:59Z' x-powered-by: - ASP.NET status: @@ -1800,40 +1363,38 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-157.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,"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":"2023-12-22T02:43:04.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.82.255.132","possibleInboundIpAddresses":"40.82.255.132","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-157.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,40.82.255.132","possibleOutboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,20.184.242.129,20.184.242.157,20.184.243.181,20.184.243.194,20.184.243.214,20.184.243.231,20.184.243.240,20.184.243.254,20.184.244.7,20.184.244.22,20.184.244.46,20.184.244.62,20.184.244.81,20.184.244.93,20.184.244.106,20.184.244.116,20.184.244.119,20.184.244.123,20.184.244.124,20.184.244.130,20.184.244.141,52.157.32.33,52.157.32.35,52.157.32.39,40.82.255.132","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-157","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","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-245.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,"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-03-18T09:02:50.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.115","possibleInboundIpAddresses":"40.112.243.115","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-245.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,40.112.243.115","possibleOutboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.66.63.171,20.245.136.188,20.66.63.212,20.237.175.121,20.237.175.228,20.228.92.43,20.228.92.148,20.237.175.235,20.228.88.45,20.228.89.191,20.228.90.170,20.228.91.80,20.228.91.196,20.228.91.197,20.228.89.188,20.253.170.80,20.237.169.40,20.237.171.181,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.228.95.56,20.228.95.57,20.245.137.169,20.245.138.96,20.245.141.46,20.228.95.139,40.112.243.115","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-245","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6888' + - '7438' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:19 GMT + - Mon, 18 Mar 2024 09:03:01 GMT etag: - - '"1DA3480968E0900"' + - '"1DA79130E01F600"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 61B6E5AFD0F341568108076E33ADA2D0 Ref B: MAA201060513033 Ref C: 2024-03-18T09:03:01Z' x-powered-by: - ASP.NET status: @@ -1841,8 +1402,8 @@ interactions: message: OK - request: body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION": - "~14", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "50855052-e84a-4fd8-9f85-b6abce613ad3"}}' + "~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=="}}' headers: Accept: - application/json @@ -1853,48 +1414,46 @@ interactions: Connection: - keep-alive Content-Length: - - '357' + - '440' Content-Type: - application/json ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"50855052-e84a-4fd8-9f85-b6abce613ad3"}}' + 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=="}}' headers: cache-control: - no-cache content-length: - - '587' + - '670' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:21 GMT + - Mon, 18 Mar 2024 09:03:04 GMT etag: - - '"1DA3480968E0900"' + - '"1DA79130E01F600"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 3577D9CA70D84CDA9BF3A5AC30EFD4D5 Ref B: MAA201060516045 Ref C: 2024-03-18T09:03:03Z' x-powered-by: - ASP.NET status: @@ -1914,8 +1473,7 @@ interactions: ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000003?api-version=2018-05-01-preview response: @@ -1923,13 +1481,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e32e13e6-0000-0200-0000-6584f7950000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00aada-0000-0200-0000-65f8030a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000003\",\r\n \"AppId\"\ - : \"e59c14c6-e261-48b9-9324-128f57dec60e\",\r\n \"Application_Type\": \"\ + : \"ec384666-2788-44d4-9109-5b6a5d817157\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"d28b73c1-16e9-41a8-99e6-10e22c37bd1b\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=d28b73c1-16e9-41a8-99e6-10e22c37bd1b;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2023-12-22T02:42:29.5074565+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"7c3581fb-2739-4713-ade5-f5d0f4da4d48\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=7c3581fb-2739-4713-ade5-f5d0f4da4d48;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000003\",\r\n \"CreationDate\": \"2024-03-18T09:02:02.4677124+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\"\ @@ -1945,23 +1503,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:43:22 GMT + - Mon, 18 Mar 2024 09:03:05 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D41E93F236004D698728B025AAA29D8F Ref B: MAA201060515045 Ref C: 2024-03-18T09:03:05Z' x-powered-by: - ASP.NET status: @@ -1983,40 +1539,38 @@ interactions: ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"50855052-e84a-4fd8-9f85-b6abce613ad3"}}' + 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=="}}' headers: cache-control: - no-cache content-length: - - '587' + - '670' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:24 GMT + - Mon, 18 Mar 2024 09:03:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: A6FB46DD15D44B35B280133211623778 Ref B: MAA201060516031 Ref C: 2024-03-18T09:03:07Z' x-powered-by: - ASP.NET status: @@ -2036,40 +1590,38 @@ interactions: ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-157.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,"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":"2023-12-22T02:43:21.5233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.82.255.132","possibleInboundIpAddresses":"40.82.255.132","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-157.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,40.82.255.132","possibleOutboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,20.184.242.129,20.184.242.157,20.184.243.181,20.184.243.194,20.184.243.214,20.184.243.231,20.184.243.240,20.184.243.254,20.184.244.7,20.184.244.22,20.184.244.46,20.184.244.62,20.184.244.81,20.184.244.93,20.184.244.106,20.184.244.116,20.184.244.119,20.184.244.123,20.184.244.124,20.184.244.130,20.184.244.141,52.157.32.33,52.157.32.35,52.157.32.39,40.82.255.132","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-157","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","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-245.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,"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-03-18T09:03:04.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.115","possibleInboundIpAddresses":"40.112.243.115","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-245.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,40.112.243.115","possibleOutboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.66.63.171,20.245.136.188,20.66.63.212,20.237.175.121,20.237.175.228,20.228.92.43,20.228.92.148,20.237.175.235,20.228.88.45,20.228.89.191,20.228.90.170,20.228.91.80,20.228.91.196,20.228.91.197,20.228.89.188,20.253.170.80,20.237.169.40,20.237.171.181,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.228.95.56,20.228.95.57,20.245.137.169,20.245.138.96,20.245.141.46,20.228.95.139,40.112.243.115","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-245","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6893' + - '7443' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:25 GMT + - Mon, 18 Mar 2024 09:03:08 GMT etag: - - '"1DA3480A0920535"' + - '"1DA79131602B52B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F4E03576EEA341D185357515B4E4B3F4 Ref B: MAA201060514033 Ref C: 2024-03-18T09:03:08Z' x-powered-by: - ASP.NET status: @@ -2077,8 +1629,10 @@ interactions: message: OK - request: body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION": - "~14", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "d28b73c1-16e9-41a8-99e6-10e22c37bd1b"}}' + "~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": "7c3581fb-2739-4713-ade5-f5d0f4da4d48", "APPINSIGHTS_CONNECTIONSTRING": + "InstrumentationKey=7c3581fb-2739-4713-ade5-f5d0f4da4d48;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/"}}' headers: Accept: - application/json @@ -2089,48 +1643,46 @@ interactions: Connection: - keep-alive Content-Length: - - '357' + - '737' Content-Type: - application/json ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d28b73c1-16e9-41a8-99e6-10e22c37bd1b"}}' + 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":"7c3581fb-2739-4713-ade5-f5d0f4da4d48","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=7c3581fb-2739-4713-ade5-f5d0f4da4d48;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/"}}' headers: cache-control: - no-cache content-length: - - '587' + - '963' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:28 GMT + - Mon, 18 Mar 2024 09:03:10 GMT etag: - - '"1DA3480A0920535"' + - '"1DA79131602B52B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: B63212A8CA97442294E203CD84EE1350 Ref B: MAA201060516047 Ref C: 2024-03-18T09:03:09Z' x-powered-by: - ASP.NET status: @@ -2152,40 +1704,38 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d28b73c1-16e9-41a8-99e6-10e22c37bd1b"}}' + 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":"7c3581fb-2739-4713-ade5-f5d0f4da4d48","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=7c3581fb-2739-4713-ade5-f5d0f4da4d48;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/"}}' headers: cache-control: - no-cache content-length: - - '587' + - '963' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:30 GMT + - Mon, 18 Mar 2024 09:03:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: 82074112E70A4FEA866FD8DBD9A334A4 Ref B: MAA201060515051 Ref C: 2024-03-18T09:03:12Z' x-powered-by: - ASP.NET status: @@ -2205,40 +1755,38 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-157.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,"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":"2023-12-22T02:43:28","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.82.255.132","possibleInboundIpAddresses":"40.82.255.132","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-157.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,40.82.255.132","possibleOutboundIpAddresses":"20.184.240.69,20.184.241.241,20.184.242.1,20.184.242.31,20.184.242.36,20.184.242.119,20.184.242.129,20.184.242.157,20.184.243.181,20.184.243.194,20.184.243.214,20.184.243.231,20.184.243.240,20.184.243.254,20.184.244.7,20.184.244.22,20.184.244.46,20.184.244.62,20.184.244.81,20.184.244.93,20.184.244.106,20.184.244.116,20.184.244.119,20.184.244.123,20.184.244.124,20.184.244.130,20.184.244.141,52.157.32.33,52.157.32.35,52.157.32.39,40.82.255.132","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-157","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","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-245.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,"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-03-18T09:03:10.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000004","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.115","possibleInboundIpAddresses":"40.112.243.115","ftpUsername":"clitestfunction000004\\$clitestfunction000004","ftpsHostName":"ftps://waws-prod-bay-245.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,40.112.243.115","possibleOutboundIpAddresses":"20.66.62.224,20.66.63.42,20.66.63.44,20.66.63.78,20.66.63.135,20.66.63.167,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.66.63.171,20.245.136.188,20.66.63.212,20.237.175.121,20.237.175.228,20.228.92.43,20.228.92.148,20.237.175.235,20.228.88.45,20.228.89.191,20.228.90.170,20.228.91.80,20.228.91.196,20.228.91.197,20.228.89.188,20.253.170.80,20.237.169.40,20.237.171.181,20.237.172.43,20.228.92.232,20.228.93.184,20.228.93.241,20.245.143.91,20.228.94.101,20.228.94.128,20.237.168.61,20.228.89.190,20.228.94.129,20.228.94.139,20.228.94.240,20.228.95.56,20.228.95.57,20.245.137.169,20.245.138.96,20.245.141.46,20.228.95.139,40.112.243.115","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-245","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6885' + - '7443' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:31 GMT + - Mon, 18 Mar 2024 09:03:15 GMT etag: - - '"1DA3480A46E4800"' + - '"1DA79131A17EF4B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: CE09E3ECE2D9415EA890D47BA6D637BE Ref B: MAA201060516047 Ref C: 2024-03-18T09:03:14Z' x-powered-by: - ASP.NET status: @@ -2258,7 +1806,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestfunction000004/config/slotConfigNames?api-version=2023-01-01 response: @@ -2273,23 +1821,21 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:32 GMT + - Mon, 18 Mar 2024 09:03:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 8BC70B7AC5264B278EC052CF6018668F Ref B: MAA201060516023 Ref C: 2024-03-18T09:03:15Z' 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 d1f79b8b4bd..0adcb49cc16 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,8 +19,7 @@ interactions: ParameterSetName: - --app --location --kind -g --application-type User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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: @@ -28,13 +27,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e32e38e6-0000-0200-0000-6584f7950000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00ffca-0000-0200-0000-65f800930000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\"\ - : \"adc39360-147d-444e-8ae1-6003e9aa1eb4\",\r\n \"Application_Type\": \"\ + : \"c205c190-92d3-4f26-8ddd-62b838ff9ec2\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"641e062f-d2bf-4ef7-b5d9-9516051caa17\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=641e062f-d2bf-4ef7-b5d9-9516051caa17;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2023-12-22T02:42:29.6949584+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"1100189e-7b67-4264-8598-79412350e3c5\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=1100189e-7b67-4264-8598-79412350e3c5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2024-03-18T08:51:31.471197+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\"\ @@ -46,29 +45,27 @@ interactions: cache-control: - no-cache content-length: - - '1261' + - '1260' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:42:29 GMT + - Mon, 18 Mar 2024 08:51:31 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: D06523679B71471D9BBD00303E522FFF Ref B: MAA201060515045 Ref C: 2024-03-18T08:51:28Z' x-powered-by: - ASP.NET status: @@ -88,8 +85,7 @@ interactions: ParameterSetName: - -g --app User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/Microsoft.Insights/components/clitestai000004?api-version=2020-02-02-preview response: @@ -97,13 +93,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e32e38e6-0000-0200-0000-6584f7950000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00ffca-0000-0200-0000-65f800930000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\"\ - : \"adc39360-147d-444e-8ae1-6003e9aa1eb4\",\r\n \"Application_Type\": \"\ + : \"c205c190-92d3-4f26-8ddd-62b838ff9ec2\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"641e062f-d2bf-4ef7-b5d9-9516051caa17\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=641e062f-d2bf-4ef7-b5d9-9516051caa17;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2023-12-22T02:42:29.6949584+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"1100189e-7b67-4264-8598-79412350e3c5\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=1100189e-7b67-4264-8598-79412350e3c5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2024-03-18T08:51:31.471197+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\"\ @@ -115,27 +111,25 @@ interactions: cache-control: - no-cache content-length: - - '1261' + - '1260' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:42:31 GMT + - Mon, 18 Mar 2024 08:51:33 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A076BEA3D25744709962A17F9443BD90 Ref B: MAA201060516033 Ref C: 2024-03-18T08:51:32Z' x-powered-by: - ASP.NET status: @@ -155,31 +149,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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":"2023-12-22T02:42:00Z","module":"application-insights"},"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":"2024-03-18T08:50:53Z","module":"application-insights","DateCreated":"2024-03-18T08:51:01Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '427' + - '498' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:42:32 GMT + - Mon, 18 Mar 2024 08:51:35 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FF8F1BC425D748A9B2067D897DE151FB Ref B: MAA201060515025 Ref C: 2024-03-18T08:51:35Z' status: code: 200 message: OK @@ -203,42 +199,40 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":36847,"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-219_36847","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2023-12-22T02:42:37.6766667"},"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":58587,"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-165_58587","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-03-18T08:51:39.25"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1644' + - '1639' content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:39 GMT + - Mon, 18 Mar 2024 08:51:42 GMT etag: - - '"1DA348086EB256B"' + - '"1DA79117E310E40"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' + x-msedge-ref: + - 'Ref A: C431144D6A284033828A28A3595D2E4A Ref B: MAA201060515051 Ref C: 2024-03-18T08:51:35Z' x-powered-by: - ASP.NET status: @@ -258,39 +252,37 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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":36847,"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-219_36847","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2023-12-22T02:42:37.6766667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":58587,"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-165_58587","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-03-18T08:51:39.25"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1566' + - '1561' content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:42 GMT + - Mon, 18 Mar 2024 08:51:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 593ED8602DDA4C7784D3F28981AF3B27 Ref B: MAA201060516053 Ref C: 2024-03-18T08:51:45Z' x-powered-by: - ASP.NET status: @@ -310,84 +302,84 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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 - Framework 4.8","value":"dotnetframework48","minorVersions":[{"displayText":".NET - Framework 4.8","value":"4.8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v4.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"4.8.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v4.0"},"supportedFunctionsExtensionVersions":["~4"]}}}]},{"displayText":".NET 8 Isolated","value":"dotnet8isolated","minorVersions":[{"displayText":".NET - 8 Isolated","value":"8 (LTS) Isolated","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v8.0","isHidden":false,"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"],"endOfLifeDate":"2026-11-10T00:00:00Z","isEarlyAccess":true},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|8.0","isHidden":false,"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"],"endOfLifeDate":"2026-11-10T00:00:00Z"}}}]},{"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 - 7 Isolated","value":"7 (STS) Isolated","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v7.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-05-14T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|7.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-05-14T00:00:00Z"}}}]},{"displayText":".NET - 6","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS)","value":"6 - (LTS)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET|6.0","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET|6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET + 7 Isolated","value":"7 (STS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v7.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-05-14T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|7.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-05-14T00:00:00Z"}}}]},{"displayText":".NET 6 Isolated","value":"dotnet6isolated","minorVersions":[{"displayText":".NET - 6 (LTS) Isolated","value":"6 (LTS) Isolated","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET + 6 (LTS) Isolated","value":"6 (LTS), isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated","WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED":"1"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"DOTNET-ISOLATED|6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET + Framework 4.8","value":"dotnetframework48","minorVersions":[{"displayText":".NET + Framework 4.8","value":".NET Framework 4.8, isolated worker model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v4.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"4.8.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v4.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}]}}}]},{"displayText":".NET + 6 In-process","value":"dotnet6","minorVersions":[{"displayText":".NET 6 (LTS) + In-process","value":"6 (LTS), in-process model","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET|6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-11-12T00:00:00Z"}}}]},{"displayText":".NET 5 (non-LTS)","value":"dotnet5","minorVersions":[{"displayText":".NET 5 (non-LTS)","value":"5 - (non-LTS)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET-ISOLATED|5.0"},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET - Core 3","value":"dotnetcore3","minorVersions":[{"displayText":".NET Core 3.1","value":"3.1","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"dotnet|3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"dotnet|3.1"},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET - 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"]},"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"]}}}]},{"displayText":".NET + (non-LTS)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"v5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"DOTNET-ISOLATED|5.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"5.0.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet-isolated"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"linuxFxVersion":"DOTNET-ISOLATED|5.0"},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-05-08T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET + Core 3","value":"dotnetcore3","minorVersions":[{"displayText":".NET Core 3.1","value":"3.1","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true},"linuxRuntimeSettings":{"runtimeVersion":"dotnet|3.1","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.1.301"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"dotnet"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"dotnet|3.1"},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-03T00:00:00Z","isDeprecated":true}}}]},{"displayText":".NET + 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"]}}}]}]}},{"id":null,"name":"node","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Node.js","value":"node","preferredOs":"windows","majorVersions":[{"displayText":"Node.js - 20","value":"20","minorVersions":[{"displayText":"Node.js 20","value":"20","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~20","isPreview":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"],"endOfLifeDate":"2026-05-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|20","isPreview":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"],"endOfLifeDate":"2026-05-30T00:00:00Z"}}}]},{"displayText":"Node.js + 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 + 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 18","value":"18","minorVersions":[{"displayText":"Node.js 18 LTS","value":"18 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~18","isDefault":true,"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"],"endOfLifeDate":"2025-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|18","isDefault":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|18"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2025-04-30T00:00:00Z"}}}]},{"displayText":"Node.js + 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 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~16"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-06-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|16"},"supportedFunctionsExtensionVersions":["~4"],"endOfLifeDate":"2024-06-30T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~16"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-06-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|16","isPreview":false,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|16"},"supportedFunctionsExtensionVersions":["~4"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true}],"endOfLifeDate":"2024-06-30T00:00:00Z"}}}]},{"displayText":"Node.js 14","value":"14","minorVersions":[{"displayText":"Node.js 14 LTS","value":"14 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~14"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"endOfLifeDate":"2023-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|14"},"supportedFunctionsExtensionVersions":["~4","~3"],"endOfLifeDate":"2023-04-30T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~14"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"14.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|14"},"supportedFunctionsExtensionVersions":["~4","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2023-04-30T00:00:00Z"}}}]},{"displayText":"Node.js 12","value":"12","minorVersions":[{"displayText":"Node.js 12 LTS","value":"12 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~12"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-13T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|12"},"supportedFunctionsExtensionVersions":["~3"],"endOfLifeDate":"2022-12-13T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~12"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-13T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|12","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|12"},"supportedFunctionsExtensionVersions":["~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~3","isDeprecated":true,"isDefault":true}],"endOfLifeDate":"2022-12-13T00:00:00Z"}}}]},{"displayText":"Node.js 10","value":"10","minorVersions":[{"displayText":"Node.js 10 LTS","value":"10 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~10"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2","~3"],"endOfLifeDate":"2021-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|10"},"supportedFunctionsExtensionVersions":["~2","~3"],"endOfLifeDate":"2021-04-30T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node","WEBSITE_NODE_DEFAULT_VERSION":"~10"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2021-04-30T00:00:00Z"},"linuxRuntimeSettings":{"runtimeVersion":"Node|10","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"node"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"Node|10"},"supportedFunctionsExtensionVersions":["~2","~3"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~2","isDeprecated":true,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false}],"endOfLifeDate":"2021-04-30T00:00:00Z"}}}]},{"displayText":"Node.js 8","value":"8","minorVersions":[{"displayText":"Node.js 8 LTS","value":"8 - LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~8","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"],"endOfLifeDate":"2019-12-31T00:00:00Z"}}}]},{"displayText":"Node.js + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~8","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","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"WEBSITE_NODE_DEFAULT_VERSION":"~6"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true},"supportedFunctionsExtensionVersions":["~1"],"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"],"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"],"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"],"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"],"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"],"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"],"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 - 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"],"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"],"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"],"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"],"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"],"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"],"endOfLifeDate":"2025-03-01T00:00:00Z"}}}]}]}},{"id":null,"name":"powershell","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"PowerShell + LTS","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"~6","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.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 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":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"powerShellVersion":"7.4","netFrameworkVersion":"v8.0"},"supportedFunctionsExtensionVersions":["~4"]},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":false,"isPreview":true,"isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true},"gitHubActionSettings":{"isSupported":true},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"powershell"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":"PowerShell|7.4"},"supportedFunctionsExtensionVersions":["~4"]}}},{"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"],"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"],"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"],"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"],"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"],"endOfLifeDate":"2022-09-30T00:00:00Z"}}}]}]}},{"id":null,"name":"custom","type":"Microsoft.Web/functionAppStacks?stackOsType=All","properties":{"displayText":"Custom + 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}]},"linuxRuntimeSettings":{"runtimeVersion":"PowerShell|7.4","isDefault":false,"isPreview":true,"isHidden":true,"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}]}}},{"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.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 - Handler","value":"custom","minorVersions":[{"displayText":"Custom Handler","value":"custom","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"custom","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"netFrameworkVersion":"v6.0"},"supportedFunctionsExtensionVersions":["~4","~3","~2"]},"linuxRuntimeSettings":{"runtimeVersion":"","isPreview":false,"appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":""},"supportedFunctionsExtensionVersions":["~4","~3","~2"]}}}]}]}}],"nextLink":null,"id":null}' + Handler","value":"custom","minorVersions":[{"displayText":"Custom Handler","value":"custom","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"custom","appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":true,"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}]},"linuxRuntimeSettings":{"runtimeVersion":"","isPreview":false,"appInsightsSettings":{"isSupported":true},"remoteDebuggingSupported":false,"gitHubActionSettings":{"isSupported":false},"appSettingsDictionary":{"FUNCTIONS_WORKER_RUNTIME":"custom"},"siteConfigPropertiesDictionary":{"use32BitWorkerProcess":false,"linuxFxVersion":""},"supportedFunctionsExtensionVersions":["~4","~3","~2"],"supportedFunctionsExtensionVersionsInfo":[{"version":"~4","isDeprecated":false,"isDefault":true},{"version":"~3","isDeprecated":true,"isDefault":false},{"version":"~2","isDeprecated":true,"isDefault":false}]}}}]}]}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '28259' + - '35805' content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:43 GMT + - Mon, 18 Mar 2024 08:51:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A199F1D763254AE1A75DFA168F63E981 Ref B: MAA201060516039 Ref C: 2024-03-18T08:51:46Z' x-powered-by: - ASP.NET status: @@ -407,12 +399,12 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-storage/21.1.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2023-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":"2023-12-22T02:42:02.1847270Z","key2":"2023-12-22T02:42:02.1847270Z"},"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":"2023-12-22T02:42:03.0284875Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2023-12-22T02:42:03.0284875Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2023-12-22T02:42:02.0909776Z","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":"2024-03-18T08:51:04.1967513Z","key2":"2024-03-18T08:51:04.1967513Z"},"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-03-18T08:51:05.2905347Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-03-18T08:51:05.2905347Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-03-18T08:51:04.1029981Z","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 @@ -421,21 +413,19 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:44 GMT + - Mon, 18 Mar 2024 08:51:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2C11A80C03284189B66D04D54FED493B Ref B: MAA201060516023 Ref C: 2024-03-18T08:51:47Z' status: code: 200 message: OK @@ -455,12 +445,12 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-storage/21.1.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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-01-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2023-12-22T02:42:02.1847270Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2023-12-22T02:42:02.1847270Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2024-03-18T08:51:04.1967513Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-03-18T08:51:04.1967513Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -469,23 +459,21 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:42:44 GMT + - Mon, 18 Mar 2024 08:51:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' + x-msedge-ref: + - 'Ref A: D9187AB0B4F147A2B34B5BF9FA0CA2F5 Ref B: MAA201060516023 Ref C: 2024-03-18T08:51:48Z' status: code: 200 message: OK @@ -493,8 +481,8 @@ interactions: body: '{"kind": "functionapp", "location": "West US", "properties": {"serverFarmId": "clitestplan000006", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", - "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~14"}, - {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3"}, {"name": "AzureWebJobsStorage", + "value": "node"}, {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~20"}, + {"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, "http20Enabled": true}, "daprConfig": {"enabled": false}, "scmSiteAlsoStopped": @@ -515,44 +503,42 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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-219.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,"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":"2023-12-22T02:42:47.3066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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-165.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,"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-03-18T08:51:51.2933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.104","possibleInboundIpAddresses":"40.112.243.104","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,40.112.243.104","possibleOutboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,20.245.97.7,20.245.98.244,20.245.99.1,20.245.99.15,20.245.96.173,20.245.99.52,20.245.99.129,20.245.99.139,20.245.99.142,20.245.96.31,20.245.100.111,20.245.100.144,20.245.100.148,20.245.100.182,20.245.100.237,20.245.101.69,20.245.101.202,20.245.101.226,20.245.101.238,20.245.102.98,20.245.102.100,20.245.98.195,20.245.102.133,20.245.102.210,40.112.243.104","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-219","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","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.50","possibleInboundIpAddresses":"40.112.243.50","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-165.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,40.112.243.50","possibleOutboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,13.64.96.65,104.42.62.244,40.83.192.17,13.64.20.59,40.118.236.199,13.64.102.109,13.64.19.226,13.64.19.242,13.64.102.124,13.64.23.132,13.91.126.184,13.64.101.210,13.91.121.195,13.93.182.126,13.93.183.129,13.64.101.106,13.93.183.68,13.64.18.241,13.93.176.127,13.93.179.244,13.93.192.138,13.91.133.139,23.100.36.18,23.100.37.252,40.112.243.50","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-165","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","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '7172' + - '7216' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:05 GMT + - Mon, 18 Mar 2024 08:52:08 GMT etag: - - '"1DA34808C953D60"' + - '"1DA79118562CAA0"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '499' + x-msedge-ref: + - 'Ref A: B01C308005294359970A08FC06201353 Ref B: MAA201060516053 Ref C: 2024-03-18T08:51:49Z' x-powered-by: - ASP.NET status: @@ -572,7 +558,7 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 response: @@ -801,16 +787,31 @@ interactions: }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\"\ ,\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\"\ ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/israel\"\ + ,\"name\":\"israel\",\"displayName\":\"Israel\",\"regionalDisplayName\":\"\ + Israel\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/italy\"\ + ,\"name\":\"italy\",\"displayName\":\"Italy\",\"regionalDisplayName\":\"Italy\"\ + ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\"\ ,\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\"\ ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\"\ ,\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\"\ ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ - id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/newzealand\"\ + ,\"name\":\"newzealand\",\"displayName\":\"New Zealand\",\"regionalDisplayName\"\ + :\"New Zealand\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\"\ + :\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\"\ ,\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"\ Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\ - }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/poland\"\ + ,\"name\":\"poland\",\"displayName\":\"Poland\",\"regionalDisplayName\":\"\ + Poland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"\ + }},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatar\"\ + ,\"name\":\"qatar\",\"displayName\":\"Qatar\",\"regionalDisplayName\":\"Qatar\"\ + ,\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\"\ ,\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\"\ :\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\"\ :\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\"\ @@ -999,21 +1000,23 @@ interactions: cache-control: - no-cache content-length: - - '32116' + - '33171' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:43:07 GMT + - Mon, 18 Mar 2024 08:52:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 978C742AA59E4E679250F7EE13BBA815 Ref B: MAA201060515017 Ref C: 2024-03-18T08:52:10Z' status: code: 200 message: OK @@ -1031,30 +1034,30 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.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":"9eacee71-cc39-41a5-8b0f-32e46a8498d0","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2022-10-31T03:25:54Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-11-04T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-10-31T03:25:54Z","modifiedDate":"2022-11-04T08:11:13.7914211Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acctestrg-sentinel-221011134813007315/providers/microsoft.operationalinsights/workspaces/acctestlaw-221011134813007315","name":"acctestLAW-221011134813007315","type":"Microsoft.OperationalInsights/workspaces","etag":"\"a4001f5d-0000-0d00-0000-6364c9260000\""},{"properties":{"customerId":"5887816a-c79e-4479-937f-032bc438c056","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-14T08:29:52.2948331Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-14T08:29:52.2948331Z","modifiedDate":"2023-12-22T01:36:50.5468296Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0560f5-0000-0700-0000-6584e8320000\""}]}' + string: '{"value":[{"properties":{"customerId":"7c16a8dd-b983-4f75-b78b-a804c169306c","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-06-12T07:58:15.2315304Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-16T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-12T07:58:15.2315304Z","modifiedDate":"2024-03-15T22:25:55.0829258Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-EUS","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-EUS","type":"Microsoft.OperationalInsights/workspaces","etag":"\"06001214-0000-0100-0000-65f4caf30000\""},{"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":"73bc18d2-9fd9-4650-b23d-d932c03fd857","provisioningState":"Succeeded","sku":{"name":"CapacityReservation","capacityReservationLevel":100,"lastSkuUpdate":"2024-03-16T20:58:44.6430816Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":1.0,"quotaNextResetTime":"2024-03-17T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-16T20:58:44.6430816Z","modifiedDate":"2024-03-16T20:58:45.6618485Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_monitor_workspace_recoverxav3t45doa2jqenhxxu4w5dh23ils6h7pqukcam3c/providers/Microsoft.OperationalInsights/workspaces/clitestx34zikmfsykjp","name":"clitestx34zikmfsykjp","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0700406b-0000-0100-0000-65f608050000\""},{"properties":{"customerId":"9eacee71-cc39-41a5-8b0f-32e46a8498d0","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2022-10-31T03:25:54Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-11-04T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-10-31T03:25:54Z","modifiedDate":"2022-11-04T08:11:13.7914211Z"},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acctestrg-sentinel-221011134813007315/providers/microsoft.operationalinsights/workspaces/acctestlaw-221011134813007315","name":"acctestLAW-221011134813007315","type":"Microsoft.OperationalInsights/workspaces","etag":"\"a4001f5d-0000-0d00-0000-6364c9260000\""},{"properties":{"customerId":"33a99994-dbfc-4eeb-88c9-b7a68f8a2ec3","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-15T04:22:27.3459636Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-16T01:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-15T04:22:27.3459636Z","modifiedDate":"2024-03-15T23:28:22.8298188Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-NEU/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-NEU","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-NEU","type":"Microsoft.OperationalInsights/workspaces","etag":"\"a000bd5f-0000-0c00-0000-65f4d9960000\""}]}' headers: cache-control: - no-cache content-length: - - '3726' + - '5710' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:43:09 GMT + - Mon, 18 Mar 2024 08:52:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-original-request-ids: @@ -1063,6 +1066,8 @@ interactions: - '' - '' - '' + x-msedge-ref: + - 'Ref A: A3F22259325B4E38A9719EFDA993392A Ref B: MAA201060516021 Ref C: 2024-03-18T08:52:13Z' status: code: 200 message: OK @@ -1264,270 +1269,7 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:09 GMT - last-modified: - - Thu, 24 Aug 2023 23:50:38 GMT - transfer-encoding: - - chunked - vary: - - Accept-Encoding - - Accept-Encoding - - Accept-Encoding - - Accept-Encoding - x-azure-ref: - - 20231222T024309Z-5z5ugeb3ap17fce3x94w6vkm34000000074000000000fx9k - x-cache: - - TCP_HIT - x-ms-blob-type: - - BlockBlob - x-ms-lease-status: - - unlocked - x-ms-version: - - '2009-09-19' - 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.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?api-version=2022-09-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG-sentinel-221011134813007315","name":"acctestRG-sentinel-221011134813007315","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3fedjzfl2xng5k4manazg5hm4id5tgpwizylx2uow25xw5ufsfb6wnrkegrkvx7ha","name":"clitest.rg3fedjzfl2xng5k4manazg5hm4id5tgpwizylx2uow25xw5ufsfb6wnrkegrkvx7ha","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2023-03-23T04:22:48Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3hphkqchjyj2tpr65oche3ocevgvwqplcum5uxwb5bn7s4h5bqdkrcgbxszc5hotu","name":"clitest.rg3hphkqchjyj2tpr65oche3ocevgvwqplcum5uxwb5bn7s4h5bqdkrcgbxszc5hotu","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2023-03-30T15:46:02Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc6anwjc2gzg6m6lxnaf5e2afnce5zehu7dyy3e4aw6calppyqylcmyhdk7j764h6","name":"cli_test_dnc6anwjc2gzg6m6lxnaf5e2afnce5zehu7dyy3e4aw6calppyqylcmyhdk7j764h6","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-22T23:35:58Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncvffnlidvdel3q6hezrj3igiv56z2mpmznhzkfupceu7bzxc6inhv3t7y4bty5lh","name":"cli_test_dncvffnlidvdel3q6hezrj3igiv56z2mpmznhzkfupceu7bzxc6inhv3t7y4bty5lh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-23T05:07:39Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncvpbasfph3qrwwnsbdxusvcpxrgfzi2dkm2rntz7fefyhoncccax3tu3mpy6xb3b","name":"cli_test_dncvpbasfph3qrwwnsbdxusvcpxrgfzi2dkm2rntz7fefyhoncccax3tu3mpy6xb3b","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-23T12:48:36Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncikyw2fj6av3c6dlt5kmasuqhe2r4iqzcguwzbfazrkse76eqjmicp34h3melofd","name":"cli_test_dncikyw2fj6av3c6dlt5kmasuqhe2r4iqzcguwzbfazrkse76eqjmicp34h3melofd","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-29T23:21:51Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwpwm5vejt5kaxomt4optf2wechjlt4u6cl3irqtgvli4ffofzbtdlu6v4dfuq4z","name":"cli_test_dncwpwm5vejt5kaxomt4optf2wechjlt4u6cl3irqtgvli4ffofzbtdlu6v4dfuq4z","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-30T04:12:59Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc43dybsupwnuvqx7ibmjgm64lmnnjiy7w2xxv2wa75wv6w2v2i4fg46iiprdzi4a","name":"cli_test_dnc43dybsupwnuvqx7ibmjgm64lmnnjiy7w2xxv2wa75wv6w2v2i4fg46iiprdzi4a","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-30T11:31:44Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncmt2ihfrizzclfb5dn53w33iqx6u5d6mw27wwogkcffw3en3fmhqexp2b6hb5yfv","name":"cli_test_dncmt2ihfrizzclfb5dn53w33iqx6u5d6mw27wwogkcffw3en3fmhqexp2b6hb5yfv","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-06T23:28:37Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncrbnljeskommfphknps3sldjuisq5fpjjjrt6auwfvhr6ytxabpdgtkpltycvzb5","name":"cli_test_dncrbnljeskommfphknps3sldjuisq5fpjjjrt6auwfvhr6ytxabpdgtkpltycvzb5","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-07T05:18:26Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc63mys5ytb3v6zyrj2ux72vi4luhp5p4e4pn6vnphpkmxre7yjiwwruhy5qbgbdy","name":"cli_test_dnc63mys5ytb3v6zyrj2ux72vi4luhp5p4e4pn6vnphpkmxre7yjiwwruhy5qbgbdy","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-07T12:58:24Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncyze6fu2drac5y2gztzisc77iz4vtlh5rct2ccub6mhjrb3e6wdm4pkmkzzscg7a","name":"cli_test_dncyze6fu2drac5y2gztzisc77iz4vtlh5rct2ccub6mhjrb3e6wdm4pkmkzzscg7a","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-13T23:24:35Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncxqococqe57godkvxp3twcntojrjqg6jolwm5l3nkb2f73mtmdaj4lt22ybk3mq3","name":"cli_test_dncxqococqe57godkvxp3twcntojrjqg6jolwm5l3nkb2f73mtmdaj4lt22ybk3mq3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-14T04:50:59Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwiavx6i4zanq52vs3vpojylcpfpruxqlttt66nw37byynl7mh4orglwcogltwpk","name":"cli_test_dncwiavx6i4zanq52vs3vpojylcpfpruxqlttt66nw37byynl7mh4orglwcogltwpk","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-14T12:33:57Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnctuwgvfse52plzmi4swkqvywupr4fygfg6hk4sjq3ouggwtynzcug2htbwlbwnrw","name":"cli_test_dnctuwgvfse52plzmi4swkqvywupr4fygfg6hk4sjq3ouggwtynzcug2htbwlbwnrw","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-03T23:22:15Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncyvozv4da2op3fwbx5cscefyzttanmmlxg4yncil54k3vujfqrzvqq2fsisipkq6","name":"cli_test_dncyvozv4da2op3fwbx5cscefyzttanmmlxg4yncil54k3vujfqrzvqq2fsisipkq6","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-04T06:21:16Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnceto73czp7gh3nvtwcx2is4ewl72hq5wxvxl7lvta7ql4j32npasjcqqwk3y2m4h","name":"cli_test_dnceto73czp7gh3nvtwcx2is4ewl72hq5wxvxl7lvta7ql4j32npasjcqqwk3y2m4h","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-04T13:50:14Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncqcug426zeswxzpenr75f5xrxgrac6rc76pngvixtwzfinyjl47n7l7ifgbdmbfw","name":"cli_test_dncqcug426zeswxzpenr75f5xrxgrac6rc76pngvixtwzfinyjl47n7l7ifgbdmbfw","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-11T01:50:17Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnctpjil3yggub6ctjq6g67zg4tfr3uaopzlpqtbr3hianu5zsepu3dwdvi5xuzegt","name":"cli_test_dnctpjil3yggub6ctjq6g67zg4tfr3uaopzlpqtbr3hianu5zsepu3dwdvi5xuzegt","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-11T11:59:46Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc2xofyhglmknddkvbi3bsstejknoa37l4vklnvy7f5qs3ryvcvbl45p4bxixht54","name":"cli_test_dnc2xofyhglmknddkvbi3bsstejknoa37l4vklnvy7f5qs3ryvcvbl45p4bxixht54","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-11T21:41:46Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwguvlsw5zf5xs2ynf3cnh2q5e2bolmq33m5g4rnr43mw55mgjc6mewxu2qo5fvs","name":"cli_test_dncwguvlsw5zf5xs2ynf3cnh2q5e2bolmq33m5g4rnr43mw55mgjc6mewxu2qo5fvs","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-18T01:42:01Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncb3vam3f7crckpdvguhz2tvulv7eoyiqjmeie47teuhjtm4b4p2d67c5gnbvxi4g","name":"cli_test_dncb3vam3f7crckpdvguhz2tvulv7eoyiqjmeie47teuhjtm4b4p2d67c5gnbvxi4g","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-18T12:10:46Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncsovycfw76jczwaxi4dclnunx7jsb4jt7jojnazf5onkaiqrlzzcrhlib4eaarb6","name":"cli_test_dncsovycfw76jczwaxi4dclnunx7jsb4jt7jojnazf5onkaiqrlzzcrhlib4eaarb6","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-18T21:52:10Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncl5lmowpvvbik6lcrn7i6rjf65oumxgeyiko62csed4ko2qefw5huaysc4fkzra7","name":"cli_test_dncl5lmowpvvbik6lcrn7i6rjf65oumxgeyiko62csed4ko2qefw5huaysc4fkzra7","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-25T01:42:36Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnco5jgo32sgegy7ctgoryldru2gdurpu2pfaporno4nirssy7k3zzveruhu6sjk26","name":"cli_test_dnco5jgo32sgegy7ctgoryldru2gdurpu2pfaporno4nirssy7k3zzveruhu6sjk26","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-25T13:31:18Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc7u2tfkcsaib6jpts4daj3w3x52ga64v2ukgnj4evas3nsf3see3mhxmyadfmz5h","name":"cli_test_dnc7u2tfkcsaib6jpts4daj3w3x52ga64v2ukgnj4evas3nsf3see3mhxmyadfmz5h","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-11-25T23:09:26Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnch7dnqchs233j2oxmcf2dpwq5unash7gqul4mmz7fvvh66bkezqvimzddjslqdx2","name":"cli_test_dnch7dnqchs233j2oxmcf2dpwq5unash7gqul4mmz7fvvh66bkezqvimzddjslqdx2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-02T01:47:54Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc5ia3zjwscs2y7xba33cbzutxru4iywxhypvvklkmz5g7gn7ohpvpa3blbhpnnof","name":"cli_test_dnc5ia3zjwscs2y7xba33cbzutxru4iywxhypvvklkmz5g7gn7ohpvpa3blbhpnnof","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-02T14:05:39Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncqudbudgclou3sgeq3pok46bceh6jnsyib4quvenu56c46vi5jai4ngfbqssge6x","name":"cli_test_dncqudbudgclou3sgeq3pok46bceh6jnsyib4quvenu56c46vi5jai4ngfbqssge6x","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-03T00:30:15Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncn5dtrjffl3fiqz5jzyzffcpqgvyzml5ldvskudc6vqhes2sn4eykunzu437i5hc","name":"cli_test_dncn5dtrjffl3fiqz5jzyzffcpqgvyzml5ldvskudc6vqhes2sn4eykunzu437i5hc","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-09T01:46:40Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncnn7p23ep4ozzrcy7iph754qwhtd3a7g54kdh27stfobstq7eankrcxvme3ofcfq","name":"cli_test_dncnn7p23ep4ozzrcy7iph754qwhtd3a7g54kdh27stfobstq7eankrcxvme3ofcfq","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-09T14:09:55Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc3bjanmofdauawudznehk3lhjrcsci7brz6k2fxsnuqxarkl6iwadxl4bhffhgvt","name":"cli_test_dnc3bjanmofdauawudznehk3lhjrcsci7brz6k2fxsnuqxarkl6iwadxl4bhffhgvt","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-16T01:49:23Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc3avxffg2qgxljvpqnmrbvtasr5zylxhlogukc43qqwgmbjjnyezpdwmtutkncqj","name":"cli_test_dnc3avxffg2qgxljvpqnmrbvtasr5zylxhlogukc43qqwgmbjjnyezpdwmtutkncqj","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-16T14:26:55Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncf654wpmbqykynedwlqs4xpr2zmfbalwcqm3khvybv2jknqmqrr5tmv6hzc5u4u2","name":"cli_test_dncf654wpmbqykynedwlqs4xpr2zmfbalwcqm3khvybv2jknqmqrr5tmv6hzc5u4u2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-12-17T00:11:32Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv7nwv6o5wdiv3dumjmaiwotyzsj4kbdd7nteo6f64z6x622waywqorjcuvdvn6q5v","name":"clitest.rgv7nwv6o5wdiv3dumjmaiwotyzsj4kbdd7nteo6f64z6x622waywqorjcuvdvn6q5v","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"product":"azurecli","cause":"automation","date":"2022-11-24T16:06:05Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview","name":"managed-rg-feng-purview","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Purview/accounts/feng-purview","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6kzjmeryiey3qq6r3t2fpgbpghqhjxjs53hyzljt5ht53gn6dzdhduqzthm5g5ck","name":"clitest.rgl6kzjmeryiey3qq6r3t2fpgbpghqhjxjs53hyzljt5ht53gn6dzdhduqzthm5g5ck","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-03-11T23:44:39Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvsrrci2gv23pas67rbcxkq3wi3mlj5wohqb6capbzzu6mnlijgtvkrydqtmes4xth","name":"clitest.rgvsrrci2gv23pas67rbcxkq3wi3mlj5wohqb6capbzzu6mnlijgtvkrydqtmes4xth","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-03-11T23:45:45Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses3lbsf6qmqwhq37l6ux4ohtdp7ye7","name":"cli_test_cross_region_lb_address_pool_addresses3lbsf6qmqwhq37l6ux4ohtdp7ye7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-09-09T07:42:55Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressessorxb3aoxeyj6hwp7xbjrluhvll5","name":"cli_test_cross_region_lb_address_pool_addressessorxb3aoxeyj6hwp7xbjrluhvll5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-09-09T23:03:32Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesylgb2sdnivfju2jeo574cw6aen5s","name":"cli_test_cross_region_lb_address_pool_addressesylgb2sdnivfju2jeo574cw6aen5s","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-09-15T07:49:10Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_custom_ip_prefix","name":"cli_test_custom_ip_prefix","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesxka42cqxp6rjvbzgazh7ecrlnj4t","name":"cli_test_cross_region_lb_address_pool_addressesxka42cqxp6rjvbzgazh7ecrlnj4t","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-11T10:58:59Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses2hce7xfbzsdwpykl3vppa5aep26o","name":"cli_test_cross_region_lb_address_pool_addresses2hce7xfbzsdwpykl3vppa5aep26o","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-22T11:45:02Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses6oqezeoarxvtyhro5ztgzkjvzsnx","name":"cli_test_cross_region_lb_address_pool_addresses6oqezeoarxvtyhro5ztgzkjvzsnx","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-22T19:40:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap","name":"zhiyihuang-rg-euap","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli","name":"portal2cli","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xz3-test","name":"xz3-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest","name":"yishitest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg","name":"zhiyihuang-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount","name":"galleryappaccount","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzbeblkttjho7ivjugywrrdo434xmuxdoavddsbgimm67257rgj55tqcilnerpaqwu","name":"clitest.rgzbeblkttjho7ivjugywrrdo434xmuxdoavddsbgimm67257rgj55tqcilnerpaqwu","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T06:25:18Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest","name":"queuetest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_edgeorder_7nmgdmdnsspu6kw3oj3hhw7zp6qz7su6mbmczfkqdmyqkr77odop2kzo","name":"cli_test_edgeorder_7nmgdmdnsspu6kw3oj3hhw7zp6qz7su6mbmczfkqdmyqkr77odop2kzo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-15T08:59:40Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_edgeorder_5n7gqmjph2nsnfwhrzkkudzvufgclsat5uyxmnxnz6dktpiue4tczccf","name":"cli_test_edgeorder_5n7gqmjph2nsnfwhrzkkudzvufgclsat5uyxmnxnz6dktpiue4tczccf","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-15T09:00:21Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg","name":"hang-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yakou2","name":"t-yakou2","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fybot","name":"fybot","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist","name":"kairu-persist","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge","name":"azure-cli-edge","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd","name":"clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-07T02:26:47Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf","name":"clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-26T05:30:07Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6","name":"clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-09-26T05:36:17Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryapp-test","name":"galleryapp-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli3p2r6","name":"synapse-cli3p2r6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-09T09:25:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhwen-domain","name":"zhwen-domain","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7mq4npypkfsrtpl25kfviwdtpxku4bq7zbx2qvktjd3dpsu3qvbyu64odoyhibu5","name":"clitest.rga7mq4npypkfsrtpl25kfviwdtpxku4bq7zbx2qvktjd3dpsu3qvbyu64odoyhibu5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-01-13T21:50:33Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_monitor_autoscale_fixeds7y6ux3n5fm3clqexmvr2ilnp3u56jwluuq57zdov2f","name":"cli_test_monitor_autoscale_fixeds7y6ux3n5fm3clqexmvr2ilnp3u56jwluuq57zdov2f","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T18:57:12Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_managed74oqsv4u3cprmu4clphfxt63d5csnwg7geuw6b6a6claxrb6447pyy6gd62","name":"img_tmpl_managed74oqsv4u3cprmu4clphfxt63d5csnwg7geuw6b6a6claxrb6447pyy6gd62","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-03-31T22:37:49Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s","name":"clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-26T08:46:36Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/taoxu","name":"taoxu","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_image_builder_template_validator_j75732rkbywmslx5znxfd3uucemtljkjv","name":"cli_test_image_builder_template_validator_j75732rkbywmslx5znxfd3uucemtljkjv","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-08-31T07:05:02Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_monitor_autoscale_fixedxeinamxuytfvu67rebecmjurgr23edvz4rxzwwae7bj","name":"cli_test_monitor_autoscale_fixedxeinamxuytfvu67rebecmjurgr23edvz4rxzwwae7bj","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-11-03T12:17:38Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliaswp6mdeod73sd5d4jg5dqieyjvfemlv3shertmyxcfkmy3md5yf4hyn6hes","name":"cli_test_eh_aliaswp6mdeod73sd5d4jg5dqieyjvfemlv3shertmyxcfkmy3md5yf4hyn6hes","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-11-09T10:34:48Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzurePowerShellLiveTest","name":"AzurePowerShellLiveTest","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azpslrg0bt2bxi5pb","name":"azpslrg0bt2bxi5pb","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_idsqwjmwoaeshqltyrofxj5ojd5isjjczsccdi5jcq3x5sm","name":"cli_test_lock_commands_with_idsqwjmwoaeshqltyrofxj5ojd5isjjczsccdi5jcq3x5sm","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_commands_with_ids","date":"2023-08-25T22:20:56Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idgxknyqo74yb3nz5y6sjpvl3xvplf4tedcbyyoojd7cac7","name":"cli_test_lock_with_resource_idgxknyqo74yb3nz5y6sjpvl3xvplf4tedcbyyoojd7cac7","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_resource_id","date":"2023-08-25T22:21:21Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idqixjmetlxlpakypqebn4mbgvrmva4ltfkuf5o4s6sfyye","name":"cli_test_lock_with_resource_idqixjmetlxlpakypqebn4mbgvrmva4ltfkuf5o4s6sfyye","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_three_level_resource_id","date":"2023-08-25T22:21:42Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_moduleshtidl7jlu5sgvvmbtrcrg6ds4uc2sq2spec2dt5qf","name":"cli_test_hardware_security_moduleshtidl7jlu5sgvvmbtrcrg6ds4uc2sq2spec2dt5qf","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-08-26T06:33:26Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idq2rk3tfxqspav7wgxe6tfdlsz5dmthagscxdxceexnlva","name":"cli_test_lock_with_resource_idq2rk3tfxqspav7wgxe6tfdlsz5dmthagscxdxceexnlva","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_resource_id","date":"2023-08-26T11:50:49Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesjcdnujh5xrj7aii5xu5a6ohrdlyilsjky5g44vil6","name":"cli_test_hardware_security_modulesjcdnujh5xrj7aii5xu5a6ohrdlyilsjky5g44vil6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-08-26T13:17:53Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesiwsjhzqacgh5fxj5yw6wq47coxy4y4ky3257f6bps","name":"cli_test_hardware_security_modulesiwsjhzqacgh5fxj5yw6wq47coxy4y4ky3257f6bps","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-01T23:38:01Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesgqbmgamqribefwxvko6xyovdsdlt2of4z7pbgipyy","name":"cli_test_hardware_security_modulesgqbmgamqribefwxvko6xyovdsdlt2of4z7pbgipyy","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-02T06:20:29Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesksinwt3kozp6xz3bpkmavlwlxqurilx74zwa62pfm","name":"cli_test_hardware_security_modulesksinwt3kozp6xz3bpkmavlwlxqurilx74zwa62pfm","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-02T12:28:32Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesqgu6444mi6zop525s62fyk2auv3xqshhiju5mch5a","name":"cli_test_hardware_security_modulesqgu6444mi6zop525s62fyk2auv3xqshhiju5mch5a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-08T23:41:17Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_with_resource_idbdgbqb5vqnt25i4tt4rokvzfne3k664lklbulorqnmcth","name":"cli_test_lock_with_resource_idbdgbqb5vqnt25i4tt4rokvzfne3k664lklbulorqnmcth","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_with_three_level_resource_id","date":"2023-09-09T03:26:24Z","module":"resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_moduleshke75y4exqjtecjz67ymumav6cz6zdx6yq2d5h2dp","name":"cli_test_hardware_security_moduleshke75y4exqjtecjz67ymumav6cz6zdx6yq2d5h2dp","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-09T05:26:13Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesnari34pojtrj77gb3sspbntig4bn4nuv7gnv66yla","name":"cli_test_hardware_security_modulesnari34pojtrj77gb3sspbntig4bn4nuv7gnv66yla","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-09-09T12:54:47Z","module":"hardware-security-modules"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_vmprofileocwlnirnwgq7uapbz4it6rvkzwvsggyhrufkanhv3etangnc53y3yg4c6","name":"img_tmpl_vmprofileocwlnirnwgq7uapbz4it6rvkzwvsggyhrufkanhv3etangnc53y3yg4c6","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_image_builder_vm_profile","date":"2023-09-16T10:29:20Z","module":"vm","DateCreated":"2023-09-16T10:31:03Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-clihgraq","name":"synapse-clihgraq","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sql_pool_audit_policy_logentry_eventhub","date":"2023-09-18T04:36:33Z","module":"synapse","Creator":"liwang3@microsoft.com","DateCreated":"2023-09-18T04:38:22Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesb3ebje7w6ucwpy24al5ttlrkmzqg7dcqhsin57fz4","name":"cli_test_hardware_security_modulesb3ebje7w6ucwpy24al5ttlrkmzqg7dcqhsin57fz4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-13T23:35:03Z","module":"hardware-security-modules","DateCreated":"2023-10-13T23:36:54Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modules3tiyo2tvg5qagd44skxnk3dyfoe5ktdjrx4fdk6dt","name":"cli_test_hardware_security_modules3tiyo2tvg5qagd44skxnk3dyfoe5ktdjrx4fdk6dt","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-14T05:07:58Z","module":"hardware-security-modules","DateCreated":"2023-10-14T05:09:45Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulespbyyjaam7razfb6thrwlb6bgiy34nkaahvnpctefp","name":"cli_test_hardware_security_modulespbyyjaam7razfb6thrwlb6bgiy34nkaahvnpctefp","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-14T12:43:48Z","module":"hardware-security-modules","DateCreated":"2023-10-14T12:44:22Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_hardware_security_modulesg7ttld3xukyn7e5uagnuakkw4qyetspvjo5aexxlx","name":"cli_test_hardware_security_modulesg7ttld3xukyn7e5uagnuakkw4qyetspvjo5aexxlx","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_hardware_security_modules","date":"2023-10-20T23:37:40Z","module":"hardware-security-modules","DateCreated":"2023-10-20T23:38:55Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_ids5mn4pfc53ihb3aw6rxg6l5hlbdqgtvwfnr5hwl6gyght","name":"cli_test_lock_commands_with_ids5mn4pfc53ihb3aw6rxg6l5hlbdqgtvwfnr5hwl6gyght","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_commands_with_ids","date":"2023-11-18T09:06:37Z","module":"resource","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-18T09:14:19Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxvzrag2j2nqopz4vhzngyniveppm4bcm4q2fflughyvdp677bmj64fvpzpbj","name":"cli_test_databoxvzrag2j2nqopz4vhzngyniveppm4bcm4q2fflughyvdp677bmj64fvpzpbj","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-11-25T22:41:43Z","module":"databox","DateCreated":"2023-11-25T22:42:47Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lock_commands_with_idsn5q2e2xjagvhis3k2wb7cbvml2u4izdf3u2ft36hb7zp","name":"cli_test_lock_commands_with_idsn5q2e2xjagvhis3k2wb7cbvml2u4izdf3u2ft36hb7zp","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_lock_commands_with_ids","date":"2023-12-02T11:01:26Z","module":"resource","DateCreated":"2023-12-02T11:03:19Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_alias6uqbw6cr2iz72xlfv3ih64myujvhdzjmm4ajcwgnutnbkni55gj7wewafq","name":"cli_test_eh_alias6uqbw6cr2iz72xlfv3ih64myujvhdzjmm4ajcwgnutnbkni55gj7wewafq","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-08T22:10:50Z","module":"eventhubs","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-08T22:11:55Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliasi5nulmrdgcpfkvlvuobpx2kpzw2jccbcguqn6pe75fwzqr35h3hujrt26y","name":"cli_test_sb_aliasi5nulmrdgcpfkvlvuobpx2kpzw2jccbcguqn6pe75fwzqr35h3hujrt26y","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-08T23:15:14Z","module":"servicebus","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-08T23:16:42Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox3mx3q44yrr74xnu2utfxojzigiltjyxbfh7zrjbc4fcnadgyuijgea2pwc5","name":"cli_test_databox3mx3q44yrr74xnu2utfxojzigiltjyxbfh7zrjbc4fcnadgyuijgea2pwc5","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-09T01:23:25Z","module":"databox","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-09T01:27:51Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliaswvzjconrkey74czhzkn7m23546sff5k6xmvmgbkg5mpq6jr5ai5jtdgpxy","name":"cli_test_eh_aliaswvzjconrkey74czhzkn7m23546sff5k6xmvmgbkg5mpq6jr5ai5jtdgpxy","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-09T09:50:34Z","module":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliasaaimzhecctya4kyyznupdddf2roscj5f5s7cb5wbe2yemxuuz75mms7nw2","name":"cli_test_sb_aliasaaimzhecctya4kyyznupdddf2roscj5f5s7cb5wbe2yemxuuz75mms7nw2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-09T11:07:45Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxp3trwjolawec35motiosctcvekkbkmce42nzjqfro7hao23erpyvxtqtxl4","name":"cli_test_databoxp3trwjolawec35motiosctcvekkbkmce42nzjqfro7hao23erpyvxtqtxl4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-09T13:44:27Z","module":"databox","DateCreated":"2023-12-09T13:46:20Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliascwyud6azjlrf2i2uvjqzhk24e77d57q7jlxm2mewbfth73fcdemxtqoy3o","name":"cli_test_eh_aliascwyud6azjlrf2i2uvjqzhk24e77d57q7jlxm2mewbfth73fcdemxtqoy3o","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-15T22:10:27Z","module":"eventhubs","DateCreated":"2023-12-15T22:11:46Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliaspglbvgi2qhgqenyj6sokh4ehvifcpflaejsbnustlkdhluniph3x4rav6c","name":"cli_test_sb_aliaspglbvgi2qhgqenyj6sokh4ehvifcpflaejsbnustlkdhluniph3x4rav6c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-15T23:19:16Z","module":"servicebus","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-15T23:21:23Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxtt6imdodzprzugbwmwpziiqqu7lisj2lsqmtadaaehnhb3dlryoixlir3se","name":"cli_test_databoxtt6imdodzprzugbwmwpziiqqu7lisj2lsqmtadaaehnhb3dlryoixlir3se","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-16T01:17:56Z","module":"databox","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-16T01:18:51Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliasevnbuu2ntkfdnt4cjec2wvqejeasj7rwc5eiqdwzllnn5sitrnpo2cjvcy","name":"cli_test_eh_aliasevnbuu2ntkfdnt4cjec2wvqejeasj7rwc5eiqdwzllnn5sitrnpo2cjvcy","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-16T10:21:38Z","module":"eventhubs","DateCreated":"2023-12-16T10:22:52Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias5oxhm3gzw43x3mup7e64prj3mqyt5vi2dvl736jqblgpv4of3vlz5tls2q","name":"cli_test_sb_alias5oxhm3gzw43x3mup7e64prj3mqyt5vi2dvl736jqblgpv4of3vlz5tls2q","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-16T11:08:48Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databoxm7vgqpbxu6emgwlinpean4z55n2nt7c6i4zusy5xn7gnaqbs6orzwqthgub","name":"cli_test_databoxm7vgqpbxu6emgwlinpean4z55n2nt7c6i4zusy5xn7gnaqbs6orzwqthgub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-16T13:56:09Z","module":"databox","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-16T13:59:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_aliasgr3bayg7n6n4xo443ythxyfyaqdnxatncvlxo3qats3bwv7mmhzv3re6rb","name":"cli_test_eh_aliasgr3bayg7n6n4xo443ythxyfyaqdnxatncvlxo3qats3bwv7mmhzv3re6rb","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_eh_alias","date":"2023-12-16T20:44:15Z","module":"eventhubs","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-12-16T20:46:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliaseovh7o4hxb5cijsrcduzk2n2whtdmxq2vohmtlc4xgv6t236hhr5t5bsje","name":"cli_test_sb_aliaseovh7o4hxb5cijsrcduzk2n2whtdmxq2vohmtlc4xgv6t236hhr5t5bsje","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_alias","date":"2023-12-16T21:49:14Z","module":"servicebus","DateCreated":"2023-12-16T21:50:42Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_databox5t7fnnuzm6p6i4pbwowmvjkmf2c3awcdokqhhqjo44qad6oxjk5gjn2vvoo","name":"cli_test_databox5t7fnnuzm6p6i4pbwowmvjkmf2c3awcdokqhhqjo44qad6oxjk5gjn2vvoo","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_databox_transfer_all_details","date":"2023-12-16T23:43:19Z","module":"databox","DateCreated":"2023-12-16T23:44:49Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liwaRg","name":"liwaRg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DateCreated":"2023-12-21T11:53:07Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Creator":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","DateCreated":"2023-12-21T19:08:53Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azpslrg0ykayyv581","name":"azpslrg0ykayyv581","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DateCreated":"2023-12-21T19:16:54Z","Creator":"0438e4b5-05a4-46ae-a804-d059a85bc21e"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS","name":"DefaultResourceGroup-WUS","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Creator":"v-jingszhang@microsoft.com","DateCreated":"2023-12-22T01:42:29Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2zqk2ywbek2kniqyia4k63lljvsp4vkjnxk2fhouvredshzdv4","name":"connect_function_cross_rg2zqk2ywbek2kniqyia4k63lljvsp4vkjnxk2fhouvredshzdv4","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2023-12-22T02:39:18Z","module":"application-insights"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001","name":"connect_function_cross_rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function_cross_resource_groups","date":"2023-12-22T02:41:58Z","module":"application-insights","DateCreated":"2023-12-22T02:43:03Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnbmxjjddocuyfklsplzuy3w6zizmndd3vzymkdcm2ela4njba6z3u6lamktoorkxa","name":"clitest.rgnbmxjjddocuyfklsplzuy3w6zizmndd3vzymkdcm2ela4njba6z3u6lamktoorkxa","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_connect_function","date":"2023-12-22T02:41:58Z","module":"application-insights","DateCreated":"2023-12-22T02:42:24Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"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":"2023-12-22T02:42:00Z","module":"application-insights","DateCreated":"2023-12-22T02:42:58Z","Creator":"v-jingszhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/acctestRG-ibt-24","name":"acctestRG-ibt-24","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907","name":"IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/acctestRG-ibt-24/providers/Microsoft.VirtualMachineImages/imageTemplates/acctest-IBT-0710-2","tags":{"createdBy":"AzureVMImageBuilder","imageTemplateName":"acctest-IBT-0710-2","imageTemplateResourceGroupName":"acctestRG-ibt-24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_router7i5huw42zwou3aczqdcerbcubvy4a2yyto6kyqtakyhxgzwszdtv","name":"cli_test_virtual_router7i5huw42zwou3aczqdcerbcubvy4a2yyto6kyqtakyhxgzwszdtv","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-15T11:43:24Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_routeroh7t5sncdhzf5tz2pybikadld3aii24mjytfxnhefltdqd4w6djy","name":"cli_test_virtual_routeroh7t5sncdhzf5tz2pybikadld3aii24mjytfxnhefltdqd4w6djy","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-15T12:02:24Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_virtual_routerkavia6zlpypv4eb4df4yt6fqkczgl6f3oh6ceynvxvde4omwl7jk","name":"cli_test_virtual_routerkavia6zlpypv4eb4df4yt6fqkczgl6f3oh6ceynvxvde4omwl7jk","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-09-15T12:21:41Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fypurview","name":"fypurview","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview","name":"managed-rg-fypurview","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fypurview/providers/Microsoft.Purview/accounts/fypurview","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg","name":"azure-cli-test-file-handle-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS2","name":"DefaultResourceGroup-WUS2","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_basic_2xdwdzkff7tdk6ctumudrb7xb2cv2rqij7zmiw3fxeh5k6nldehna22m4m32","name":"img_tmpl_basic_2xdwdzkff7tdk6ctumudrb7xb2cv2rqij7zmiw3fxeh5k6nldehna22m4m32","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-07T11:03:37Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcnqbveriigbeetmz5n6mk3gldxgfgkrpdzoanetznkfumzohrheswiua3jwrgracb","name":"clitest.rgcnqbveriigbeetmz5n6mk3gldxgfgkrpdzoanetznkfumzohrheswiua3jwrgracb","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T16:13:19Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia","name":"cloud-shell-storage-southeastasia","type":"Microsoft.Resources/resourceGroups","location":"southeastasia","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lightning","name":"lightning","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc3unsnyjjzemygr7dgs6jgkt3gwf3miljcongbaiaigac5agrc2azpmwu4frstj3","name":"cli_test_dnc3unsnyjjzemygr7dgs6jgkt3gwf3miljcongbaiaigac5agrc2azpmwu4frstj3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-20T23:27:04Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncbc5ew7ppttwikqro6kojgieoo6yoqvd43sikgaj4l3ik6z7u6pblevk5c534l6w","name":"cli_test_dncbc5ew7ppttwikqro6kojgieoo6yoqvd43sikgaj4l3ik6z7u6pblevk5c534l6w","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-21T10:31:00Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncfnypyhlu4nx6h3q22sg4qodslhveynenwjxulquglrazgd7bpswn7ox4cy4y4y7","name":"cli_test_dncfnypyhlu4nx6h3q22sg4qodslhveynenwjxulquglrazgd7bpswn7ox4cy4y4y7","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-21T18:01:11Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncjnajjc4wevjysuwas4pdqfzjf2nfpvki4vjccuoqwuiusv4gau6zvhoydospthc","name":"cli_test_dncjnajjc4wevjysuwas4pdqfzjf2nfpvki4vjccuoqwuiusv4gau6zvhoydospthc","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-27T23:29:23Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncblswqsnmcf2ew6hqynwqdfdwadmohtm246hgbymdrwg5v54sstbkgw7trdahigd","name":"cli_test_dncblswqsnmcf2ew6hqynwqdfdwadmohtm246hgbymdrwg5v54sstbkgw7trdahigd","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-28T05:13:49Z","module":"dnc","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-10-28T05:14:30Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc74h3ew6bmn2gssaf6xu6ozllrzlrwers76f46tjcbyxrpt5p7lkekcm7tofgvht","name":"cli_test_dnc74h3ew6bmn2gssaf6xu6ozllrzlrwers76f46tjcbyxrpt5p7lkekcm7tofgvht","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-10-28T12:37:56Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesug47tacsjysgux7c7keguxawhqw6","name":"cli_test_cross_region_lb_address_pool_addressesug47tacsjysgux7c7keguxawhqw6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-10-29T19:26:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses6jp3wdtc7egbv3khh4iziutdl2hi","name":"cli_test_cross_region_lb_address_pool_addresses6jp3wdtc7egbv3khh4iziutdl2hi","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-01T15:52:20Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresseskstiqvvyyyihrtktegsauewfptv4","name":"cli_test_cross_region_lb_address_pool_addresseskstiqvvyyyihrtktegsauewfptv4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T05:08:02Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses54tgxooebhe64nvbhlbszo6rzhdk","name":"cli_test_cross_region_lb_address_pool_addresses54tgxooebhe64nvbhlbszo6rzhdk","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-04T18:47:14Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesv7m6kq332wdrylfadddb424ucgsq","name":"cli_test_cross_region_lb_address_pool_addressesv7m6kq332wdrylfadddb424ucgsq","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-05T05:26:41Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresseskjkqwodt6s6m6hod5dvinjcid3xv","name":"cli_test_cross_region_lb_address_pool_addresseskjkqwodt6s6m6hod5dvinjcid3xv","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-11T18:29:28Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesvhje2rsgm4rnyhejz2f6mrdrtnw4","name":"cli_test_cross_region_lb_address_pool_addressesvhje2rsgm4rnyhejz2f6mrdrtnw4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-18T19:22:53Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesqntc7x2m37kgxgjdtt773g7srp7o","name":"cli_test_cross_region_lb_address_pool_addressesqntc7x2m37kgxgjdtt773g7srp7o","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-11-25T19:16:04Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_loadbalance","name":"test_cli_loadbalance","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesio53jukz56bxsdilpnpghlsre6fx","name":"cli_test_cross_region_lb_address_pool_addressesio53jukz56bxsdilpnpghlsre6fx","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-02T19:05:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesea74zzxcod4vx6gqeq5ywsvspfix","name":"cli_test_cross_region_lb_address_pool_addressesea74zzxcod4vx6gqeq5ywsvspfix","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-08T16:00:44Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresseslsgl7rltczxyw47db7fwuqjmzhga","name":"cli_test_cross_region_lb_address_pool_addresseslsgl7rltczxyw47db7fwuqjmzhga","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-09T19:18:09Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesq3tvf37jm5oyjoxamobdcfp3hi3m","name":"cli_test_cross_region_lb_address_pool_addressesq3tvf37jm5oyjoxamobdcfp3hi3m","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-16T19:08:01Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesi2huyxdtfr5zbzopxaonwqf2efrw","name":"cli_test_cross_region_lb_address_pool_addressesi2huyxdtfr5zbzopxaonwqf2efrw","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-23T19:01:53Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesomd2td4qlisiqyhgiqtkwze4zaap","name":"cli_test_cross_region_lb_address_pool_addressesomd2td4qlisiqyhgiqtkwze4zaap","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T18:50:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesr27hecyfxa4gbteb7u446txrzg2v","name":"cli_test_cross_region_lb_address_pool_addressesr27hecyfxa4gbteb7u446txrzg2v","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-06T19:02:51Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesi2sgg5g73rlyl3vhyqdcpxvc5gwt","name":"cli_test_cross_region_lb_address_pool_addressesi2sgg5g73rlyl3vhyqdcpxvc5gwt","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-01-13T20:33:13Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesusl7vffknbcgyej4l3irpvnjaqa5","name":"cli_test_cross_region_lb_address_pool_addressesusl7vffknbcgyej4l3irpvnjaqa5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T05:28:12Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addresses7eeuueorazxwbgez7s7yi5f3jpkn","name":"cli_test_cross_region_lb_address_pool_addresses7eeuueorazxwbgez7s7yi5f3jpkn","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T17:43:29Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cross_region_lb_address_pool_addressesumdvxyw3n4gz3pfrvglubqnpl6za","name":"cli_test_cross_region_lb_address_pool_addressesumdvxyw3n4gz3pfrvglubqnpl6za","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-02-24T19:22:25Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2","name":"rg2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east","name":"zhiyihuang-rg-euap-east","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest_resourcemover_collection_4tsykgqqavyattss4pmyohdpm34kwbodytp3p2jaag","name":"clitest_resourcemover_collection_4tsykgqqavyattss4pmyohdpm34kwbodytp3p2jaag","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-25T06:47:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg.testelasticsan.volumegroup4kbfxkw2zowtoule6vbix2kvgj65q22xy76bi7","name":"clitest.rg.testelasticsan.volumegroup4kbfxkw2zowtoule6vbix2kvgj65q22xy76bi7","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2023-01-16T05:15:21Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_o3gievirxf5xqyurkidjjnkrq7iacy4g3argjkpe5apzll2g6nfa4jnjz2","name":"test_nw_flow_log_o3gievirxf5xqyurkidjjnkrq7iacy4g3argjkpe5apzll2g6nfa4jnjz2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-07-28T20:12:01Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_syrgzzmn77g367w3g42v4lpxd2udh7kh2zhfqfvy3boubl53wygq5scilh","name":"test_nw_flow_log_syrgzzmn77g367w3g42v4lpxd2udh7kh2zhfqfvy3boubl53wygq5scilh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-07-28T20:16:08Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_ddkvaudkckpyy7giwwotuvtto7dnvrb7fa3e6bydj45ctorpf4fbkwvhyb","name":"test_nw_flow_log_ddkvaudkckpyy7giwwotuvtto7dnvrb7fa3e6bydj45ctorpf4fbkwvhyb","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-07-28T20:19:54Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_o3egjyhyuekrwdrkj2kajxejz2yiqvszu6dhnnpngyds7kdzfib6iug5vv","name":"test_nw_flow_log_o3egjyhyuekrwdrkj2kajxejz2yiqvszu6dhnnpngyds7kdzfib6iug5vv","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-04T20:02:28Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_rdcye7yurvrvgdtqzdhyglrs5la54zgwws3s3lforx27t5xzv66koiv2ca","name":"test_nw_flow_log_rdcye7yurvrvgdtqzdhyglrs5la54zgwws3s3lforx27t5xzv66koiv2ca","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-04T20:06:31Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_gl3t3uektvbbnfpowoxwz4etbbpqqtdkfletoppt2437s3qout3n5oty34","name":"test_nw_flow_log_gl3t3uektvbbnfpowoxwz4etbbpqqtdkfletoppt2437s3qout3n5oty34","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-04T20:12:56Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-rg","name":"cli-test-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-cli-test-db-create-yyhko6mu2w646","name":"databricks-rg-cli-test-db-create-yyhko6mu2w646","type":"Microsoft.Resources/resourceGroups","location":"centralus","managedBy":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-rg/providers/Microsoft.Databricks/workspaces/cli-test-db-create","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_7i6uzdruatidfzk6fmmybxwztbmidq5pczklpmzmn4gtruqxwiorxnou4r","name":"test_nw_flow_log_7i6uzdruatidfzk6fmmybxwztbmidq5pczklpmzmn4gtruqxwiorxnou4r","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-11T20:08:12Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_r73gxq5itbztaslt4znozpzla763wvppaead3loit73tddhmwrmccd4k3u","name":"test_nw_flow_log_r73gxq5itbztaslt4znozpzla763wvppaead3loit73tddhmwrmccd4k3u","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-11T20:12:17Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_azg2ocdhhur5spregh37paypcjbjkxa6yn7uwvu3aivypdqjlzcedoxocq","name":"test_nw_flow_log_azg2ocdhhur5spregh37paypcjbjkxa6yn7uwvu3aivypdqjlzcedoxocq","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-11T20:16:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_n6a3givgy4ye6mbxfkfkn4kuxdioqmbyqcqcjxtrs4h4eagpmcmdbjmczf","name":"test_nw_flow_log_n6a3givgy4ye6mbxfkfkn4kuxdioqmbyqcqcjxtrs4h4eagpmcmdbjmczf","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-18T21:32:20Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_7xsq3zuyr7snbwzwlu7crwxtsubun47zcs57m6ixqyneylyhclxvtzytym","name":"test_nw_flow_log_7xsq3zuyr7snbwzwlu7crwxtsubun47zcs57m6ixqyneylyhclxvtzytym","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-18T21:36:58Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_jlydgrmvamqer7hcn2ubqilhkgop5kghjqk4mn2yco2gjn62x6mtszfz2v","name":"test_nw_flow_log_jlydgrmvamqer7hcn2ubqilhkgop5kghjqk4mn2yco2gjn62x6mtszfz2v","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T20:38:38Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_7p2hdetxeh6ekkjovisifva2zcfr3uzevzs3nyfjtx57iebudjdb2rjkui","name":"test_nw_flow_log_7p2hdetxeh6ekkjovisifva2zcfr3uzevzs3nyfjtx57iebudjdb2rjkui","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T20:42:42Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_zrsrbhasf4kr2hp72wi7gkylasb6pkm2rkbz7wwalnwrze4w23kvsl3eh2","name":"test_nw_flow_log_zrsrbhasf4kr2hp72wi7gkylasb6pkm2rkbz7wwalnwrze4w23kvsl3eh2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-25T21:01:41Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_pj6gwmzpqcwclkeypo7ltpsts57ko5yfhkuovfeggpyk7vipw5acsv3hd3","name":"test_nw_flow_log_pj6gwmzpqcwclkeypo7ltpsts57ko5yfhkuovfeggpyk7vipw5acsv3hd3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-28T15:32:09Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_pfhoualpznynfxeazy3tunetmi3b5bwdqihdi4mzmrydvtvp2osp3j4ozh","name":"test_nw_flow_log_pfhoualpznynfxeazy3tunetmi3b5bwdqihdi4mzmrydvtvp2osp3j4ozh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-28T15:39:05Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_faqx72so3yllolwt5tqmb5u6hrnl7zb4hukt54kycyop3dqgjogpfstgt2","name":"test_nw_flow_log_faqx72so3yllolwt5tqmb5u6hrnl7zb4hukt54kycyop3dqgjogpfstgt2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-08-28T15:48:47Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_jx3adqdjp2p4moubhvlavto2kl7uz7pnh4kfbwoaulb75wakgiopcem4pm","name":"test_nw_flow_log_jx3adqdjp2p4moubhvlavto2kl7uz7pnh4kfbwoaulb75wakgiopcem4pm","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-09-01T20:29:55Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_bu3t2d5c7uxbtibjbbava42eqv3romeooz43ttqltl74bmokprc4kpvvry","name":"test_nw_flow_log_bu3t2d5c7uxbtibjbbava42eqv3romeooz43ttqltl74bmokprc4kpvvry","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-09-01T20:35:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_nw_flow_log_2zm7xy5a23hga5f6drru7yilehfsjruhuu2apmlkfqugluqw4xlwklb2gz","name":"test_nw_flow_log_2zm7xy5a23hga5f6drru7yilehfsjruhuu2apmlkfqugluqw4xlwklb2gz","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2022-09-01T20:39:43Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgreyqbrfgy2","name":"clitest.rgreyqbrfgy2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-08-25T22:07:37Z","module":"backup"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgtestsasencode","name":"rgtestsasencode","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Creator":"zhiyihuang@microsoft.com","DateCreated":"2023-09-21T03:11:06Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2tjbcqep6","name":"clitest.rgd2tjbcqep6","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-09-23T12:03:50Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-09-23T12:04:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest_resourcemover_collection_uyov3cg3owmp2ciipxyioiqosqv6hjhr7om26cvz4c","name":"clitest_resourcemover_collection_uyov3cg3owmp2ciipxyioiqosqv6hjhr7om26cvz4c","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_resourcemover_movecollection_e2e","date":"2023-09-29T23:56:01Z","module":"resource-mover","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-09-29T23:57:57Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2obenjrzq","name":"clitest.rgg2obenjrzq","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-10-20T22:07:36Z","module":"backup","DateCreated":"2023-10-20T22:11:41Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgokqv6c4rsk","name":"clitest.rgokqv6c4rsk","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-03T22:07:52Z","module":"backup","DateCreated":"2023-11-03T22:09:07Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5cskybhs5t","name":"clitest.rg5cskybhs5t","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-03T22:07:52Z","module":"backup","DateCreated":"2023-11-03T22:10:27Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt3vn32jjvx","name":"clitest.rgt3vn32jjvx","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-03T22:07:52Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-03T22:12:03Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtqfrcckbao","name":"clitest.rgtqfrcckbao","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_unregister_container","date":"2023-11-03T22:21:10Z","module":"backup","DateCreated":"2023-11-03T22:22:25Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbj3bo7hftp","name":"clitest.rgbj3bo7hftp","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_protection","date":"2023-11-03T22:24:41Z","module":"backup","DateCreated":"2023-11-03T22:26:05Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbqxjasetow","name":"clitest.rgbqxjasetow","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_item","date":"2023-11-03T22:39:21Z","module":"backup","DateCreated":"2023-11-03T22:46:20Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgis7xzkwbtr","name":"clitest.rgis7xzkwbtr","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-11-03T22:51:31Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-03T22:53:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6thpbekg5","name":"clitest.rgn6thpbekg5","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-04T04:20:22Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:22:47Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4txubjxotd","name":"clitest.rg4txubjxotd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-04T04:20:22Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:21:42Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtwlcxjwue2","name":"clitest.rgtwlcxjwue2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-04T04:20:22Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:21:40Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmyxwezgweu","name":"clitest.rgmyxwezgweu","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_unregister_container","date":"2023-11-04T04:34:18Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:36:11Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2mgdbyshkx","name":"clitest.rg2mgdbyshkx","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_protection","date":"2023-11-04T04:38:49Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:39:38Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrv3uv2idwk","name":"clitest.rgrv3uv2idwk","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_item","date":"2023-11-04T04:53:15Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T04:55:18Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvblzahd55t","name":"clitest.rgvblzahd55t","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-11-04T05:04:03Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T05:06:07Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggdgjgjdasf","name":"clitest.rggdgjgjdasf","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-04T12:31:12Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T12:34:01Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3nqcqiy722","name":"clitest.rg3nqcqiy722","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_restore","date":"2023-11-04T12:31:12Z","module":"backup","DateCreated":"2023-11-04T12:33:12Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsoqew7nra","name":"clitest.rgtsoqew7nra","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-04T12:31:12Z","module":"backup","DateCreated":"2023-11-04T12:36:41Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggpdwmiq7wd","name":"clitest.rggpdwmiq7wd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-04T12:31:13Z","module":"backup","DateCreated":"2023-11-04T12:34:19Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc2odxzggkj","name":"clitest.rgc2odxzggkj","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-11-04T12:36:56Z","module":"backup","DateCreated":"2023-11-04T12:37:26Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgulrqhku67p","name":"clitest.rgulrqhku67p","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_unregister_container","date":"2023-11-04T12:43:20Z","module":"backup","DateCreated":"2023-11-04T12:45:21Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgayywgjefz2","name":"clitest.rgayywgjefz2","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_protection","date":"2023-11-04T12:48:45Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-04T12:49:28Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglylmol3cvc","name":"clitest.rglylmol3cvc","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_item","date":"2023-11-04T13:03:19Z","module":"backup","DateCreated":"2023-11-04T13:06:38Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg5cndsh6ix","name":"clitest.rgg5cndsh6ix","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_policy","date":"2023-11-11T18:07:28Z","module":"backup","DateCreated":"2023-11-11T18:10:24Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjslj57okpd","name":"clitest.rgjslj57okpd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-17T22:07:58Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-17T22:10:07Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2uaeroy3aw","name":"clitest.rg2uaeroy3aw","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-24T22:08:32Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-24T22:11:04Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghz74qea6yd","name":"clitest.rghz74qea6yd","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_scenario","date":"2023-11-25T19:44:59Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-25T19:46:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3vlq57hidw","name":"clitest.rg3vlq57hidw","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_container","date":"2023-11-25T19:44:59Z","module":"backup","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-11-25T19:47:03Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapseworkspace-managedrg-e4b5ae81-d4ea-4aa5-8f10-efe808354e04","name":"synapseworkspace-managedrg-e4b5ae81-d4ea-4aa5-8f10-efe808354e04","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/azpslrg0bt2bxi5pb/providers/Microsoft.Synapse/workspaces/azpsl24o26uz6rw","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testkvv2rg","name":"testkvv2rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-live-test","name":"azure-cli-live-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azureCliBCD","name":"azureCliBCD","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjdigo3pce3","name":"clitest.rgjdigo3pce3","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","test":"test_afs_backup_rp","date":"2023-12-08T22:53:39Z","module":"backup","DateCreated":"2023-12-08T22:58:20Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureClientToolsAutomation","name":"AzureClientToolsAutomation","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/liwang3_rg_7651","name":"liwang3_rg_7651","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg","name":"bez-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgteststorageoverwrite","name":"rgteststorageoverwrite","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc5jl3bopnl2kpvghibnjxnaucmyqnoodh4wh7yyybajv2eojc5fett4englsag7x","name":"cli_test_dnc5jl3bopnl2kpvghibnjxnaucmyqnoodh4wh7yyybajv2eojc5fett4englsag7x","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-04T23:32:59Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncuxnwsvi7s5hrsltbxe3zemnniko4kndgyt3zfbn3pa7l2xfs7coouw2kuns6iu5","name":"cli_test_dncuxnwsvi7s5hrsltbxe3zemnniko4kndgyt3zfbn3pa7l2xfs7coouw2kuns6iu5","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-05T11:27:20Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncg2ixf7iqcvizv2olu5xknibgrp3pfrivfmuq5z4t46tedvonex3v7js24tcgbbl","name":"cli_test_dncg2ixf7iqcvizv2olu5xknibgrp3pfrivfmuq5z4t46tedvonex3v7js24tcgbbl","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-05T17:47:13Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncx4ywr3abo3b2alssrwdxo3e4o5xpqqwywap5xcwp5zkcxe3epktmujcwaqljbdx","name":"cli_test_dncx4ywr3abo3b2alssrwdxo3e4o5xpqqwywap5xcwp5zkcxe3epktmujcwaqljbdx","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-11T23:37:53Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncxnfd5sundygkicgizn7eqiucyena6jkfdnlv7v2us5rhanrel5pzwiklxg6kofm","name":"cli_test_dncxnfd5sundygkicgizn7eqiucyena6jkfdnlv7v2us5rhanrel5pzwiklxg6kofm","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-12T06:18:14Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncgkamqpnvx4o7seywrwgdoghfln73635pu7r6nbnoze4biw7fmb55xaxwabulg3u","name":"cli_test_dncgkamqpnvx4o7seywrwgdoghfln73635pu7r6nbnoze4biw7fmb55xaxwabulg3u","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-12T13:46:42Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncap777dhibjwlqolcp6qr57krtrk4chwmovhufybpvy5lazjfnjviz2xauaimbda","name":"cli_test_dncap777dhibjwlqolcp6qr57krtrk4chwmovhufybpvy5lazjfnjviz2xauaimbda","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-18T23:27:48Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwh4yhydrd4rt3us3wjsj4djaubix7psmbmrssbj5s5s7l24dc7bkotvvvn2kybz","name":"cli_test_dncwh4yhydrd4rt3us3wjsj4djaubix7psmbmrssbj5s5s7l24dc7bkotvvvn2kybz","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-19T06:24:13Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncaabncwvgbsh7rj4sxuuphr4hbhu26fax5nyzzbqu2xxumsejxc6l3ejw5skycdg","name":"cli_test_dncaabncwvgbsh7rj4sxuuphr4hbhu26fax5nyzzbqu2xxumsejxc6l3ejw5skycdg","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-19T13:21:16Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc6a5yhhs773itx26zqgwyfs6sqapz7nfyf3bkthuxz3twasgja73frucqy2ulist","name":"cli_test_dnc6a5yhhs773itx26zqgwyfs6sqapz7nfyf3bkthuxz3twasgja73frucqy2ulist","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-25T23:32:38Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc4udv3vom5y743c3njnejw3vvlvvwedju667ct6gknjqptqixdz6mnucmvhkuvei","name":"cli_test_dnc4udv3vom5y743c3njnejw3vvlvvwedju667ct6gknjqptqixdz6mnucmvhkuvei","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-26T06:23:37Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncg3pdldwnv5qjz5xiicpplwjrf5pkid7wwb2dm7jbqu24we7togqimrryzyisdp2","name":"cli_test_dncg3pdldwnv5qjz5xiicpplwjrf5pkid7wwb2dm7jbqu24we7togqimrryzyisdp2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-08-26T13:04:35Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncvaend3thhblgkiwjdc2qpjbk5c2lh47qecsf732iwtyloefzmtbmpaghuqyk7l3","name":"cli_test_dncvaend3thhblgkiwjdc2qpjbk5c2lh47qecsf732iwtyloefzmtbmpaghuqyk7l3","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-01T23:27:34Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncymyc6nakzlyfk7vm5omlqvjopget64oammuq2bnwuraw2c7ycjvjmrhm2wozeha","name":"cli_test_dncymyc6nakzlyfk7vm5omlqvjopget64oammuq2bnwuraw2c7ycjvjmrhm2wozeha","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-02T06:10:45Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncqffjoh6biu3v62fqdpy6ysi75dx2zrkmjjeahbyy3mrmv2gx2o6iw255izaaulh","name":"cli_test_dncqffjoh6biu3v62fqdpy6ysi75dx2zrkmjjeahbyy3mrmv2gx2o6iw255izaaulh","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-02T12:18:40Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dnc536l4cgmbarzwgdein2s575dvfiejrph3sn6dpvgmlwhshafoi4sjfjtw4luyxq","name":"cli_test_dnc536l4cgmbarzwgdein2s575dvfiejrph3sn6dpvgmlwhshafoi4sjfjtw4luyxq","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-08T23:31:38Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncofixjmxvscno3mx2tlbskz6u4ddta5qgbtel3vieyv5pfwqbfm4ztsx4m25up4l","name":"cli_test_dncofixjmxvscno3mx2tlbskz6u4ddta5qgbtel3vieyv5pfwqbfm4ztsx4m25up4l","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-09T05:15:34Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncnstewfv6xoovl5shcaowmkmptmxkoifgvxkyqlnnmeor2fsamxftfqomau6jamn","name":"cli_test_dncnstewfv6xoovl5shcaowmkmptmxkoifgvxkyqlnnmeor2fsamxftfqomau6jamn","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-09T12:44:55Z","module":"dnc"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncsybo5fxnm6sfntuleg4zagnj6sbqxvz47n6pczvsrfubdazsy7gb3hltwwh6jfk","name":"cli_test_dncsybo5fxnm6sfntuleg4zagnj6sbqxvz47n6pczvsrfubdazsy7gb3hltwwh6jfk","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-15T23:34:36Z","module":"dnc","DateCreated":"2023-09-15T23:35:43Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncwq2uqs3i6q4qicbd4e2qbxund7v3iofmcm3ljrcmmrisfqosbnfzlfua55ogmzt","name":"cli_test_dncwq2uqs3i6q4qicbd4e2qbxund7v3iofmcm3ljrcmmrisfqosbnfzlfua55ogmzt","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-16T05:14:16Z","module":"dnc","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611","DateCreated":"2023-09-16T05:15:33Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_dncakhszsfxnnh62ognc4x6u5jqcwbog5wpwl32q2zyxcwsci7g2tifawzg3rfkmew","name":"cli_test_dncakhszsfxnnh62ognc4x6u5jqcwbog5wpwl32q2zyxcwsci7g2tifawzg3rfkmew","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_dnc_delegated_subnet_service_create","date":"2023-09-16T11:25:58Z","module":"dnc","DateCreated":"2023-09-16T11:27:48Z","Creator":"6d54ef76-c4a5-4ad6-9cf8-d2eb9dcad611"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgteststorageentity","name":"rgteststorageentity","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shiying-rg","name":"shiying-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"lock":"allow"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutoTagFunctionAppRG","name":"AutoTagFunctionAppRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DateCreated":"2023-09-06","Creator":"shiyingchen@microsoft.com","lock":"allow"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapseworkspace-managedrg-6954375f-bd5f-4c3d-8688-6b30f253ddc8","name":"synapseworkspace-managedrg-6954375f-bd5f-4c3d-8688-6b30f253ddc8","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/synapse-clihgraq/providers/Microsoft.Synapse/workspaces/clitestvtvug2weg","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azClientToolsAssistant-rg","name":"azClientToolsAssistant-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"created-by":"teamsfx","Creator":"shiyingchen@microsoft.com","DateCreated":"2023-09-26T02:39:20Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxaadjj7uigrw4k3szislue75vdbxbdul4nt5zksv2fun5kqcsozxkr3dbwpegyodp","name":"clitest.rgxaadjj7uigrw4k3szislue75vdbxbdul4nt5zksv2fun5kqcsozxkr3dbwpegyodp","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_file_system","date":"2023-10-08T04:01:52Z","module":"qumulo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghmhp2yfnt6fci6yrvtb2li2pddj2xiyfkyzjc6bxbaawo4743o4uuuahbruklxwp2","name":"clitest.rghmhp2yfnt6fci6yrvtb2li2pddj2xiyfkyzjc6bxbaawo4743o4uuuahbruklxwp2","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_file_system","date":"2023-10-09T02:54:51Z","module":"qumulo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nori-insights","name":"nori-insights","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DateCreated":"2023-10-12T08:27:19Z","Creator":"norizhang@microsoft.com"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Networking","name":"Default-Networking","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup","name":"myResourceGroup","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_rules_with_ipgroupsqiervqkqdl6gyu4szgpwbyiw7zx3ucbo","name":"cli_test_azure_firewall_rules_with_ipgroupsqiervqkqdl6gyu4szgpwbyiw7zx3ucbo","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-04-15T03:15:42Z","StorageType":"Standard_LRS","type":"test","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_vpshzlob7c63iuglneagoxjxa45dqn6eoglhf37oo5cms","name":"cli_netappfiles_test_snapshot_vpshzlob7c63iuglneagoxjxa45dqn6eoglhf37oo5cms","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-10T06:47:57Z","StorageType":"Standard_LRS","type":"test","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test","name":"sdk-wus2-rg-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved","name":"AzureSDKTest_reserved","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg","name":"feng-cli-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yu-test-rg","name":"yu-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_mixed_realitygv2l3elh76a7brm66drgektfyzfsijxog6smmqzg6dnn2r7ofuf6c","name":"cli_test_mixed_realitygv2l3elh76a7brm66drgektfyzfsijxog6smmqzg6dnn2r7ofuf6c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T22:15:53Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg","name":"azure-cli-test-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_rules_with_ipgroupse4upfibqoujmdn4odvtgrbuvqqgdvwd7","name":"cli_test_azure_firewall_rules_with_ipgroupse4upfibqoujmdn4odvtgrbuvqqgdvwd7","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T02:24:44Z","DeleteOn":"2023-01-10"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '118222' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Dec 2023 02:43:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.31.0 - method: GET - uri: https://appinsights.azureedge.net/portal/regionMapping.json - response: - body: - string: "{\n \"regions\": {\n \"centralus\": {\n \"geo\"\ - : \"unitedstates\",\n \"pairedRegions\": [\n \"\ - eastus2\",\n \"eastus\"\n ],\n \"laRegionCode\"\ - : \"CUS\"\n },\n \"eastus2\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"centralus\",\n \ - \ \"eastus\"\n ],\n \"laRegionCode\": \"\ - EUS2\"\n },\n \"eastus\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"westus\"\n \ - \ ],\n \"laRegionCode\": \"EUS\"\n },\n \"northcentralus\"\ - : {\n \"geo\": \"unitedstates\",\n \"pairedRegions\"\ - : [\n \"southcentralus\"\n ],\n \"laRegionCode\"\ - : \"NCUS\"\n },\n \"southcentralus\": {\n \"geo\"\ - : \"unitedstates\",\n \"pairedRegions\": [\n \"\ - northcentralus\"\n ],\n \"laRegionCode\": \"SCUS\"\n\ - \ },\n \"westus2\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"westcentralus\"\n \ - \ ],\n \"laRegionCode\": \"WUS2\"\n },\n \ - \ \"westus3\": {\n \"geo\": \"unitedstates\",\n \"\ - pairedRegions\": [\n \"westus2\"\n ],\n \ - \ \"laRegionCode\": \"USW3\"\n },\n \"westcentralus\": {\n\ - \ \"geo\": \"unitedstates\",\n \"pairedRegions\": [\n\ - \ \"westus2\"\n ],\n \"laRegionCode\"\ - : \"WCUS\"\n },\n \"westus\": {\n \"geo\": \"unitedstates\"\ - ,\n \"pairedRegions\": [\n \"eastus\"\n \ - \ ],\n \"laRegionCode\": \"WUS\"\n },\n \"canadacentral\"\ - : {\n \"geo\": \"canada\",\n \"pairedRegions\": [\n\ - \ \"canadaeast\"\n ],\n \"laRegionCode\"\ - : \"CCAN\"\n },\n \"canadaeast\": {\n \"geo\": \"\ - canada\",\n \"pairedRegions\": [\n \"canadacentral\"\ - \n ],\n \"laRegionCode\": \"\"\n },\n \ - \ \"brazilsouth\": {\n \"geo\": \"brazil\",\n \"pairedRegions\"\ - : [\n \"southcentralus\"\n ],\n \"laRegionCode\"\ - : \"CQ\"\n },\n \"eastasia\": {\n \"geo\": \"asiapacific\"\ - ,\n \"pairedRegions\": [\n \"southeastasia\"\n \ - \ ],\n \"laRegionCode\": \"EA\"\n },\n \ - \ \"southeastasia\": {\n \"geo\": \"asiapacific\",\n \ - \ \"pairedRegions\": [\n \"eastasia\"\n ],\n \ - \ \"laRegionCode\": \"SEA\"\n },\n \"australiacentral\"\ - : {\n \"geo\": \"australia\",\n \"pairedRegions\": [\n\ - \ \"australiacentral2\",\n \"australiaeast\"\ - \n ],\n \"laRegionCode\": \"CAU\"\n },\n \ - \ \"australiacentral2\": {\n \"geo\": \"australia\",\n \ - \ \"pairedRegions\": [\n \"australiacentral\",\n \ - \ \"australiaeast\"\n ],\n \"laRegionCode\"\ - : \"CBR2\"\n },\n \"australiaeast\": {\n \"geo\"\ - : \"australia\",\n \"pairedRegions\": [\n \"australiasoutheast\"\ - \n ],\n \"laRegionCode\": \"EAU\"\n },\n \ - \ \"australiasoutheast\": {\n \"geo\": \"australia\",\n \ - \ \"pairedRegions\": [\n \"australiaeast\"\n \ - \ ],\n \"laRegionCode\": \"SEAU\"\n },\n \"chinaeast\"\ - : {\n \"geo\": \"china\",\n \"pairedRegions\": [\n \ - \ \"chinanorth\",\n \"chinaeast2\"\n \ - \ ],\n \"laRegionCode\": \"\"\n },\n \"chinanorth\"\ - : {\n \"geo\": \"china\",\n \"pairedRegions\": [\n \ - \ \"chinaeast\",\n \"chinaeast2\"\n \ - \ ],\n \"laRegionCode\": \"\"\n },\n \"chinaeast2\"\ - : {\n \"geo\": \"china\",\n \"pairedRegions\": [\n \ - \ \"chinanorth2\"\n ],\n \"laRegionCode\"\ - : \"CNE2\"\n },\n \"chinanorth2\": {\n \"geo\": \"\ - china\",\n \"pairedRegions\": [\n \"chinaeast2\"\ - \n ],\n \"laRegionCode\": \"\"\n },\n \ - \ \"chinaeast3\": {\n \"geo\": \"china\",\n \"pairedRegions\"\ - : [\n \"chinanorth3\"\n ],\n \"laRegionCode\"\ - : \"CNE3\"\n },\n \"chinanorth3\": {\n \"geo\": \"\ - china\",\n \"pairedRegions\": [\n \"chinaeast3\"\ - \n ],\n \"laRegionCode\": \"CNN3\"\n },\n \ - \ \"centralindia\": {\n \"geo\": \"india\",\n \"\ - pairedRegions\": [\n \"southindia\"\n ],\n \ - \ \"laRegionCode\": \"CID\"\n },\n \"southindia\": {\n\ - \ \"geo\": \"india\",\n \"pairedRegions\": [\n \ - \ \"centralindia\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"westindia\": {\n \"geo\": \"india\"\ - ,\n \"pairedRegions\": [\n \"southindia\",\n \ - \ \"centralindia\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"jioindiacentral\": {\n \"geo\": \"\ - india\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"JINC\"\n },\n \"jioindiawest\": {\n \"geo\":\ - \ \"india\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"JINW\"\n },\n \"japaneast\": {\n \"geo\": \"\ - japan\",\n \"pairedRegions\": [\n \"japanwest\"\n\ - \ ],\n \"laRegionCode\": \"EJP\"\n },\n \ - \ \"japanwest\": {\n \"geo\": \"japan\",\n \"pairedRegions\"\ - : [\n \"japaneast\"\n ],\n \"laRegionCode\"\ - : \"OS\"\n },\n \"koreacentral\": {\n \"geo\": \"\ - korea\",\n \"pairedRegions\": [\n \"koreasouth\"\ - \n ],\n \"laRegionCode\": \"SE\"\n },\n \ - \ \"koreasouth\": {\n \"geo\": \"korea\",\n \"pairedRegions\"\ - : [\n \"koreacentral\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"northeurope\": {\n \"geo\": \"europe\"\ - ,\n \"pairedRegions\": [\n \"westeurope\"\n \ - \ ],\n \"laRegionCode\": \"NEU\"\n },\n \"\ - westeurope\": {\n \"geo\": \"europe\",\n \"pairedRegions\"\ - : [\n \"northeurope\"\n ],\n \"laRegionCode\"\ - : \"WEU\"\n },\n \"francecentral\": {\n \"geo\":\ - \ \"france\",\n \"pairedRegions\": [\n \"francesouth\"\ - \n ],\n \"laRegionCode\": \"PAR\"\n },\n \ - \ \"francesouth\": {\n \"geo\": \"france\",\n \"\ - pairedRegions\": [\n \"francecentral\"\n ],\n \ - \ \"laRegionCode\": \"\"\n },\n \"uksouth\": {\n \ - \ \"geo\": \"unitedkingdom\",\n \"pairedRegions\": [\n\ - \ \"ukwest\"\n ],\n \"laRegionCode\"\ - : \"SUK\"\n },\n \"ukwest\": {\n \"geo\": \"unitedkingdom\"\ - ,\n \"pairedRegions\": [\n \"uksouth\"\n \ - \ ],\n \"laRegionCode\": \"WUK\"\n },\n \"germanycentral\"\ - : {\n \"geo\": \"germany\",\n \"pairedRegions\": [\n\ - \ \"germanynortheast\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"germanynortheast\": {\n \"geo\":\ - \ \"germany\",\n \"pairedRegions\": [\n \"germanycentral\"\ - \n ],\n \"laRegionCode\": \"\"\n },\n \ - \ \"germanywestcentral\": {\n \"geo\": \"germany\",\n \ - \ \"pairedRegions\": [\n \"germanynorth\"\n ],\n\ - \ \"laRegionCode\": \"DEWC\"\n },\n \"germanynorth\"\ - : {\n \"geo\": \"germany\",\n \"pairedRegions\": [\n\ - \ \"germanywestcentral\"\n ],\n \"laRegionCode\"\ - : \"DEN\"\n },\n \"switzerlandwest\": {\n \"geo\"\ - : \"switzerland\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"CHW\"\n },\n \"switzerlandnorth\": {\n \"geo\"\ - : \"switzerland\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"CHN\"\n },\n \"swedencentral\": {\n \"geo\":\ - \ \"sweden\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"SEC\"\n },\n \"swedensouth\": {\n \"geo\": \"\ - sweden\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"SES\"\n },\n \"norwaywest\": {\n \"geo\": \"\ - norway\",\n \"pairedRegions\": [],\n \"laRegionCode\"\ - : \"\"\n },\n \"norwayeast\": {\n \"geo\": \"norway\"\ - ,\n \"pairedRegions\": [],\n \"laRegionCode\": \"\"\n\ - \ },\n \"southafricanorth\": {\n \"geo\": \"africa\"\ - ,\n \"pairedRegions\": [\n \"southafricawest\"\n\ - \ ],\n \"laRegionCode\": \"JNB\"\n },\n \ - \ \"southafricawest\": {\n \"geo\": \"africa\",\n \ - \ \"pairedRegions\": [\n \"southafricanorth\"\n \ - \ ],\n \"laRegionCode\": \"CPT\"\n },\n \"uaenorth\"\ - : {\n \"geo\": \"unitedarabemirates\",\n \"pairedRegions\"\ - : [],\n \"laRegionCode\": \"\"\n },\n \"uaecentral\"\ - : {\n \"geo\": \"unitedarabemirates\",\n \"pairedRegions\"\ - : [],\n \"laRegionCode\": \"AUH\"\n },\n \"qatarcentral\"\ - : {\n \"geo\": \"qatar\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"QAC\"\n },\n \"polandcentral\"\ - : {\n \"geo\": \"poland\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"PLC\"\n },\n \"israelcentral\"\ - : {\n \"geo\": \"israel\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"ILC\"\n },\n \"italynorth\"\ - : {\n \"geo\": \"italy\",\n \"pairedRegions\": [],\n\ - \ \"laRegionCode\": \"ITN\"\n },\n \"usdodcentral\"\ - : {\n \"geo\": \"azuregovernment\",\n \"pairedRegions\"\ - : [\n \"usdodeast\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"usdodeast\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usdodcentral\"\n \ - \ ],\n \"laRegionCode\": \"\"\n },\n \"\ - usgovarizona\": {\n \"geo\": \"azuregovernment\",\n \ - \ \"pairedRegions\": [\n \"usgovtexas\"\n ],\n \ - \ \"laRegionCode\": \"PHX\"\n },\n \"usgoviowa\":\ - \ {\n \"geo\": \"azuregovernment\",\n \"pairedRegions\"\ - : [\n \"usgovvirginia\"\n ],\n \"laRegionCode\"\ - : \"\"\n },\n \"usgovtexas\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usgovarizona\"\n \ - \ ],\n \"laRegionCode\": \"SN\"\n },\n \"\ - usgovvirginia\": {\n \"geo\": \"azuregovernment\",\n \ - \ \"pairedRegions\": [\n \"usgoviowa\",\n \"\ - usgovarizona\"\n ],\n \"laRegionCode\": \"USBN1\"\n\ - \ },\n \"ussecwest\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usseceast\"\n \ - \ ],\n \"laRegionCode\": \"RXW\"\n },\n \"\ - usseceast\": {\n \"geo\": \"azuregovernment\",\n \"\ - pairedRegions\": [\n \"ussecwest\"\n ],\n \ - \ \"laRegionCode\": \"RXE\"\n },\n \"usnatwest\": {\n \ - \ \"geo\": \"azuregovernment\",\n \"pairedRegions\":\ - \ [\n \"usnateast\"\n ],\n \"laRegionCode\"\ - : \"EXW\"\n },\n \"usnateast\": {\n \"geo\": \"azuregovernment\"\ - ,\n \"pairedRegions\": [\n \"usnatwest\"\n \ - \ ],\n \"laRegionCode\": \"EXE\"\n }\n }\n}" - headers: - access-control-allow-origin: - - '*' - access-control-expose-headers: - - x-ms-request-id,Server,x-ms-version,Content-Type,Last-Modified,ETag,x-ms-lease-status,x-ms-blob-type,Content-Length,Date,Transfer-Encoding - connection: - - keep-alive - content-length: - - '11575' - content-type: - - application/json - date: - - Fri, 22 Dec 2023 02:43:12 GMT + - Mon, 18 Mar 2024 08:52:14 GMT last-modified: - Thu, 24 Aug 2023 23:50:38 GMT transfer-encoding: @@ -1538,9 +1280,11 @@ interactions: - Accept-Encoding - Accept-Encoding x-azure-ref: - - 20231222T024311Z-6m0y1mhx9x6bz51v2kvf099ua4000000021000000000a45d + - 20240318T085214Z-pf9mdda8k57mfe3k74s3p4bqws00000009k000000001dywt x-cache: - TCP_HIT + x-fd-int-roxy-purgeid: + - '37550646' x-ms-blob-type: - BlockBlob x-ms-lease-status: @@ -1550,187 +1294,6 @@ interactions: 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.55.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS?api-version=2021-12-01-preview - response: - body: - string: '{"properties":{"customerId":"5887816a-c79e-4479-937f-032bc438c056","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-12-14T08:29:52.2948331Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-12-22T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-12-14T08:29:52.2948331Z","modifiedDate":"2023-12-22T01:36:50.5468296Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","name":"DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS","type":"Microsoft.OperationalInsights/workspaces","etag":"\"0a0560f5-0000-0700-0000-6584e8320000\""}' - headers: - access-control-allow-origin: - - '*' - api-supported-versions: - - 2021-12-01-preview - cache-control: - - no-cache - content-length: - - '980' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Dec 2023 02:43:12 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "kind": "web", "properties": {"Application_Type": - "web", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '307' - Content-Type: - - application/json - ParameterSetName: - - -g -n --plan -s --functions-version --runtime - User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Insights/components/clitestfunction000005?api-version=2020-02-02-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/microsoft.insights/components/clitestfunction000005\"\ - ,\r\n \"name\": \"clitestfunction000005\",\r\n \"type\": \"microsoft.insights/components\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e42e1006-0000-0200-0000-6584f7c30000\\\"\",\r\n \"\ - properties\": {\r\n \"ApplicationId\": \"clitestfunction000005\",\r\n \ - \ \"AppId\": \"ab5c61cf-a862-483b-9f1f-de8debfb3f24\",\r\n \"Application_Type\"\ - : \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": null,\r\n\ - \ \"InstrumentationKey\": \"acb1aaf1-ed0d-4c59-84d3-1612316ec4e4\",\r\n\ - \ \"ConnectionString\": \"InstrumentationKey=acb1aaf1-ed0d-4c59-84d3-1612316ec4e4;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestfunction000005\",\r\n \"CreationDate\": \"\ - 2023-12-22T02:43:15.2093561+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/DefaultResourceGroup-WUS/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-0b1f6471-1bf0-4dda-aec3-cb9272f09590-WUS\"\ - ,\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: - - '1502' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 22 Dec 2023 02:43:14 GMT - expires: - - '-1' - pragma: - - no-cache - request-context: - - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -s --functions-version --runtime - User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-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-219.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,"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":"2023-12-22T02:43:05.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.104","possibleInboundIpAddresses":"40.112.243.104","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,40.112.243.104","possibleOutboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,20.245.97.7,20.245.98.244,20.245.99.1,20.245.99.15,20.245.96.173,20.245.99.52,20.245.99.129,20.245.99.139,20.245.99.142,20.245.96.31,20.245.100.111,20.245.100.144,20.245.100.148,20.245.100.182,20.245.100.237,20.245.101.69,20.245.101.202,20.245.101.226,20.245.101.238,20.245.102.98,20.245.102.100,20.245.98.195,20.245.102.133,20.245.102.210,40.112.243.104","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-219","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' - headers: - cache-control: - - no-cache - content-length: - - '6961' - content-type: - - application/json - date: - - Fri, 22 Dec 2023 02:43:17 GMT - etag: - - '"1DA3480970079E0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: null headers: @@ -1747,13 +1310,13 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey=="}}' + 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=="}}' headers: cache-control: - no-cache @@ -1762,25 +1325,23 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:19 GMT + - Mon, 18 Mar 2024 08:52:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: 0461B114B701419BB21A400D3D672C5B Ref B: MAA201060515045 Ref C: 2024-03-18T08:52:15Z' x-powered-by: - ASP.NET status: @@ -1800,40 +1361,38 @@ interactions: ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-219.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,"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":"2023-12-22T02:43:05.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.104","possibleInboundIpAddresses":"40.112.243.104","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,40.112.243.104","possibleOutboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,20.245.97.7,20.245.98.244,20.245.99.1,20.245.99.15,20.245.96.173,20.245.99.52,20.245.99.129,20.245.99.139,20.245.99.142,20.245.96.31,20.245.100.111,20.245.100.144,20.245.100.148,20.245.100.182,20.245.100.237,20.245.101.69,20.245.101.202,20.245.101.226,20.245.101.238,20.245.102.98,20.245.102.100,20.245.98.195,20.245.102.133,20.245.102.210,40.112.243.104","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-219","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","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-165.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,"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-03-18T08:52:09.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.50","possibleInboundIpAddresses":"40.112.243.50","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-165.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,40.112.243.50","possibleOutboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,13.64.96.65,104.42.62.244,40.83.192.17,13.64.20.59,40.118.236.199,13.64.102.109,13.64.19.226,13.64.19.242,13.64.102.124,13.64.23.132,13.91.126.184,13.64.101.210,13.91.121.195,13.93.182.126,13.93.183.129,13.64.101.106,13.93.183.68,13.64.18.241,13.93.176.127,13.93.179.244,13.93.192.138,13.91.133.139,23.100.36.18,23.100.37.252,40.112.243.50","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-165","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6961' + - '7010' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:20 GMT + - Mon, 18 Mar 2024 08:52:24 GMT etag: - - '"1DA3480970079E0"' + - '"1DA79118F979AD5"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 46C7B8270E434DD5B18ECD7DB0979513 Ref B: MAA201060513049 Ref C: 2024-03-18T08:52:17Z' x-powered-by: - ASP.NET status: @@ -1841,8 +1400,8 @@ interactions: message: OK - request: body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION": - "~14", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "acb1aaf1-ed0d-4c59-84d3-1612316ec4e4"}}' + "~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=="}}' headers: Accept: - application/json @@ -1853,48 +1412,46 @@ interactions: Connection: - keep-alive Content-Length: - - '357' + - '440' Content-Type: - application/json ParameterSetName: - -g -n --plan -s --functions-version --runtime User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"acb1aaf1-ed0d-4c59-84d3-1612316ec4e4"}}' + 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=="}}' headers: cache-control: - no-cache content-length: - - '603' + - '686' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:22 GMT + - Mon, 18 Mar 2024 08:52:26 GMT etag: - - '"1DA3480970079E0"' + - '"1DA79118F979AD5"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: C9E65E1BA0C84722A2DFFD4B4C53A33B Ref B: MAA201060514033 Ref C: 2024-03-18T08:52:25Z' x-powered-by: - ASP.NET status: @@ -1914,8 +1471,7 @@ interactions: ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.11 - (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg000001/providers/Microsoft.Insights/components/clitestai000004?api-version=2018-05-01-preview response: @@ -1923,13 +1479,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"e32e38e6-0000-0200-0000-6584f7950000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00ffca-0000-0200-0000-65f800930000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000004\",\r\n \"AppId\"\ - : \"adc39360-147d-444e-8ae1-6003e9aa1eb4\",\r\n \"Application_Type\": \"\ + : \"c205c190-92d3-4f26-8ddd-62b838ff9ec2\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"641e062f-d2bf-4ef7-b5d9-9516051caa17\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=641e062f-d2bf-4ef7-b5d9-9516051caa17;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2023-12-22T02:42:29.6949584+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"1100189e-7b67-4264-8598-79412350e3c5\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=1100189e-7b67-4264-8598-79412350e3c5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000004\",\r\n \"CreationDate\": \"2024-03-18T08:51:31.471197+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\"\ @@ -1941,27 +1497,25 @@ interactions: cache-control: - no-cache content-length: - - '1261' + - '1260' content-type: - application/json; charset=utf-8 date: - - Fri, 22 Dec 2023 02:43:23 GMT + - Mon, 18 Mar 2024 08:52:28 GMT expires: - '-1' pragma: - no-cache request-context: - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: DACD67E141574E52BE1EC8EB14119BF7 Ref B: MAA201060513025 Ref C: 2024-03-18T08:52:27Z' x-powered-by: - ASP.NET status: @@ -1983,40 +1537,38 @@ interactions: ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"acb1aaf1-ed0d-4c59-84d3-1612316ec4e4"}}' + 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=="}}' headers: cache-control: - no-cache content-length: - - '603' + - '686' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:25 GMT + - Mon, 18 Mar 2024 08:52:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: 4765DFFA0F024829BE3DACCC723A9901 Ref B: MAA201060516039 Ref C: 2024-03-18T08:52:29Z' x-powered-by: - ASP.NET status: @@ -2036,40 +1588,38 @@ interactions: ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-219.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,"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":"2023-12-22T02:43:23.1833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.104","possibleInboundIpAddresses":"40.112.243.104","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,40.112.243.104","possibleOutboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,20.245.97.7,20.245.98.244,20.245.99.1,20.245.99.15,20.245.96.173,20.245.99.52,20.245.99.129,20.245.99.139,20.245.99.142,20.245.96.31,20.245.100.111,20.245.100.144,20.245.100.148,20.245.100.182,20.245.100.237,20.245.101.69,20.245.101.202,20.245.101.226,20.245.101.238,20.245.102.98,20.245.102.100,20.245.98.195,20.245.102.133,20.245.102.210,40.112.243.104","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-219","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","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-165.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,"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-03-18T08:52:26.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.50","possibleInboundIpAddresses":"40.112.243.50","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-165.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,40.112.243.50","possibleOutboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,13.64.96.65,104.42.62.244,40.83.192.17,13.64.20.59,40.118.236.199,13.64.102.109,13.64.19.226,13.64.19.242,13.64.102.124,13.64.23.132,13.91.126.184,13.64.101.210,13.91.121.195,13.93.182.126,13.93.183.129,13.64.101.106,13.93.183.68,13.64.18.241,13.93.176.127,13.93.179.244,13.93.192.138,13.91.133.139,23.100.36.18,23.100.37.252,40.112.243.50","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-165","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6966' + - '7010' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:27 GMT + - Mon, 18 Mar 2024 08:52:30 GMT etag: - - '"1DA3480A18F50F5"' + - '"1DA791199D389F5"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D9F2BE624B5C4ECEA511B0AB38E85FCB Ref B: MAA201060516009 Ref C: 2024-03-18T08:52:30Z' x-powered-by: - ASP.NET status: @@ -2077,8 +1627,10 @@ interactions: message: OK - request: body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "WEBSITE_NODE_DEFAULT_VERSION": - "~14", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "641e062f-d2bf-4ef7-b5d9-9516051caa17"}}' + "~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": "1100189e-7b67-4264-8598-79412350e3c5", "APPINSIGHTS_CONNECTIONSTRING": + "InstrumentationKey=1100189e-7b67-4264-8598-79412350e3c5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/"}}' headers: Accept: - application/json @@ -2089,48 +1641,46 @@ interactions: Connection: - keep-alive Content-Length: - - '357' + - '737' Content-Type: - application/json ParameterSetName: - -g --app --function User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"641e062f-d2bf-4ef7-b5d9-9516051caa17"}}' + 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":"1100189e-7b67-4264-8598-79412350e3c5","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=1100189e-7b67-4264-8598-79412350e3c5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/"}}' headers: cache-control: - no-cache content-length: - - '603' + - '979' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:29 GMT + - Mon, 18 Mar 2024 08:52:33 GMT etag: - - '"1DA3480A18F50F5"' + - '"1DA791199D389F5"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 32AC3ED6AC6242D1A0689C3D774B0807 Ref B: MAA201060514027 Ref C: 2024-03-18T08:52:32Z' x-powered-by: - ASP.NET status: @@ -2152,40 +1702,38 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"~14","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000003;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"641e062f-d2bf-4ef7-b5d9-9516051caa17"}}' + 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":"1100189e-7b67-4264-8598-79412350e3c5","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=1100189e-7b67-4264-8598-79412350e3c5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/"}}' headers: cache-control: - no-cache content-length: - - '603' + - '979' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:31 GMT + - Mon, 18 Mar 2024 08:52:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: 2251FB2959EC43688053882C9C53BC69 Ref B: MAA201060516035 Ref C: 2024-03-18T08:52:35Z' x-powered-by: - ASP.NET status: @@ -2205,40 +1753,38 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-219.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,"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":"2023-12-22T02:43:29.2633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"ipMode":"IPv4","vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"functionapp","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.104","possibleInboundIpAddresses":"40.112.243.104","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,40.112.243.104","possibleOutboundIpAddresses":"20.245.97.201,20.245.98.53,20.245.98.157,20.245.98.166,20.245.98.182,20.245.98.220,20.245.97.7,20.245.98.244,20.245.99.1,20.245.99.15,20.245.96.173,20.245.99.52,20.245.99.129,20.245.99.139,20.245.99.142,20.245.96.31,20.245.100.111,20.245.100.144,20.245.100.148,20.245.100.182,20.245.100.237,20.245.101.69,20.245.101.202,20.245.101.226,20.245.101.238,20.245.102.98,20.245.102.100,20.245.98.195,20.245.102.133,20.245.102.210,40.112.243.104","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-219","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","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-165.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,"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-03-18T08:52:33.2166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":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,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestfunction000005","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":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.50","possibleInboundIpAddresses":"40.112.243.50","ftpUsername":"clitestfunction000005\\$clitestfunction000005","ftpsHostName":"ftps://waws-prod-bay-165.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,40.112.243.50","possibleOutboundIpAddresses":"13.64.16.238,13.64.95.102,13.91.127.75,13.64.88.215,13.64.94.44,13.64.98.140,13.64.96.65,104.42.62.244,40.83.192.17,13.64.20.59,40.118.236.199,13.64.102.109,13.64.19.226,13.64.19.242,13.64.102.124,13.64.23.132,13.91.126.184,13.64.101.210,13.91.121.195,13.93.182.126,13.93.183.129,13.64.101.106,13.93.183.68,13.64.18.241,13.93.176.127,13.93.179.244,13.93.192.138,13.91.133.139,23.100.36.18,23.100.37.252,40.112.243.50","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-165","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6966' + - '7010' content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:33 GMT + - Mon, 18 Mar 2024 08:52:37 GMT etag: - - '"1DA3480A52F0CF5"' + - '"1DA79119DF26E0B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B8A3428CE22B40CA804E7BD5751E7EB5 Ref B: MAA201060514009 Ref C: 2024-03-18T08:52:37Z' x-powered-by: - ASP.NET status: @@ -2258,7 +1804,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.55.0 azsdk-python-azure-mgmt-web/7.2.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/connect_function_cross_rg2000002/providers/Microsoft.Web/sites/clitestfunction000005/config/slotConfigNames?api-version=2023-01-01 response: @@ -2273,23 +1819,21 @@ interactions: content-type: - application/json date: - - Fri, 22 Dec 2023 02:43:34 GMT + - Mon, 18 Mar 2024 08:52:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 76C9064C264C47158089C7F11C92ACE2 Ref B: MAA201060514025 Ref C: 2024-03-18T08:52:38Z' 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 54c2555fe3b..9c21e48d0ae 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,8 +19,7 @@ interactions: ParameterSetName: - --app --location --kind -g --application-type User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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: @@ -28,13 +27,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100092de-0000-0200-0000-64e567610000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0029d6-0000-0200-0000-65f8026a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\"\ - : \"c57305c0-173b-4f20-a841-6d3e920aea7a\",\r\n \"Application_Type\": \"\ + : \"b1cdcff1-2ae7-4bfd-a934-e26383d36294\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"65efcf05-3949-4c61-b64a-991d2291f1e1\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=65efcf05-3949-4c61-b64a-991d2291f1e1;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2023-08-23T01:56:49.1203725+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"f5a6be5e-1867-4e64-9a1c-18db55ef3fb8\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=f5a6be5e-1867-4e64-9a1c-18db55ef3fb8;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2024-03-18T08:59:21.9383347+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\"\ @@ -50,25 +49,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:50 GMT + - Mon, 18 Mar 2024 08:59:22 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 71DDB5F1364A469E92C76854524D7882 Ref B: MAA201060516031 Ref C: 2024-03-18T08:59:19Z' x-powered-by: - ASP.NET status: @@ -88,8 +85,7 @@ interactions: ParameterSetName: - -g --app User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000002?api-version=2020-02-02-preview response: @@ -97,13 +93,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100092de-0000-0200-0000-64e567610000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0029d6-0000-0200-0000-65f8026a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\"\ - : \"c57305c0-173b-4f20-a841-6d3e920aea7a\",\r\n \"Application_Type\": \"\ + : \"b1cdcff1-2ae7-4bfd-a934-e26383d36294\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"65efcf05-3949-4c61-b64a-991d2291f1e1\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=65efcf05-3949-4c61-b64a-991d2291f1e1;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2023-08-23T01:56:49.1203725+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"f5a6be5e-1867-4e64-9a1c-18db55ef3fb8\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=f5a6be5e-1867-4e64-9a1c-18db55ef3fb8;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2024-03-18T08:59:21.9383347+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\"\ @@ -119,23 +115,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:52 GMT + - Mon, 18 Mar 2024 08:59:24 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7CF636BB2CF64BC7A67503F922231D0F Ref B: MAA201060513039 Ref C: 2024-03-18T08:59:23Z' x-powered-by: - ASP.NET status: @@ -155,31 +149,33 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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":"2023-08-23T01:56:37Z","module":"application-insights"},"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":"2024-03-18T08:59:12Z","module":"application-insights","DateCreated":"2024-03-18T08:59:22Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '371' + - '442' content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:56:53 GMT + - Mon, 18 Mar 2024 08:59:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6704CFCA5D924CF7AF889D9FEF25B938 Ref B: MAA201060514011 Ref C: 2024-03-18T08:59:25Z' status: code: 200 message: OK @@ -203,42 +199,40 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":36246,"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-231_36246","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/clitestplan000004","name":"clitestplan000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":40124,"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-211_40124","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":null,"vnetConnectionsMax":null,"createdTime":"2024-03-18T08:59:29.5366667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1478' + - '1596' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:05 GMT + - Mon, 18 Mar 2024 08:59:31 GMT etag: - - '"1D9D5651D7FC6AB"' + - '"1DA7912967F948B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: B1021A8061F54DD98103D02E18F6D949 Ref B: MAA201060514021 Ref C: 2024-03-18T08:59:26Z' x-powered-by: - ASP.NET status: @@ -258,39 +252,37 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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":36246,"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-231_36246","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":40124,"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-211_40124","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false,"migrateToVMSS":null,"vnetConnectionsUsed":0,"vnetConnectionsMax":2,"createdTime":"2024-03-18T08:59:29.5366667"},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1406' + - '1518' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:09 GMT + - Mon, 18 Mar 2024 08:59:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2C35B26C767041498CF640C368243FC9 Ref B: MAA201060515009 Ref C: 2024-03-18T08:59:34Z' x-powered-by: - ASP.NET status: @@ -314,7 +306,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2023-01-01 response: @@ -328,23 +320,21 @@ interactions: content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:11 GMT + - Mon, 18 Mar 2024 08:59:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A3E7F57465BE4148AD8FEBFE1D5AA4D8 Ref B: MAA201060513033 Ref C: 2024-03-18T08:59:35Z' x-powered-by: - ASP.NET status: @@ -364,14 +354,15 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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 - 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"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.x"}}}}]},{"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"}}}}]},{"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 + 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"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|7.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"7.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"}},"linuxRuntimeSettings":{"runtimeVersion":"DOTNETCORE|6.0","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"6.0.x"},"supportedFeatures":{"disableSsh":true}}}}]},{"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 @@ -384,9 +375,10 @@ 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 - 18","value":"18","minorVersions":[{"displayText":"Node 18 LTS","value":"18-lts","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|18-lts","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"}},"windowsRuntimeSettings":{"runtimeVersion":"~18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"18.x"}}}}]},{"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":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"endOfLifeDate":"2024-04-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"~16","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"16.x"},"endOfLifeDate":"2024-04-30T00: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"},"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 + 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 + 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 12.9","value":"12.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|12.9","isDeprecated":true,"remoteDebuggingSupported":true,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"12.x"},"endOfLifeDate":"2022-04-01T00:00:00Z"}}}]},{"displayText":"Node 10","value":"10","minorVersions":[{"displayText":"Node 10 LTS","value":"10-LTS","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"NODE|10-lts","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"10.x"},"endOfLifeDate":"2021-04-01T00:00:00Z"}}},{"displayText":"Node @@ -421,16 +413,17 @@ 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.11","value":"3.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.11"},"isHidden":false}}},{"displayText":"Python - 3.10","value":"3.10","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.10","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.10"},"isHidden":false,"isEarlyAccess":false}}},{"displayText":"Python - 3.9","value":"3.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.9"},"isHidden":false}}},{"displayText":"Python - 3.8","value":"3.8","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PYTHON|3.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"3.8"}}}},{"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"}}}},{"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":false},"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":false},"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":false},"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":false},"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 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.2","value":"8.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|8.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"8.2"},"endOfLifeDate":"2025-11-30T00: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"},"endOfLifeDate":"2024-11-30T00: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"},"endOfLifeDate":"2023-11-30T00:00:00Z"}}}]},{"displayText":"PHP + 8","value":"8","minorVersions":[{"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.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 7.2","value":"7.2","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"PHP|7.2","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2020-11-30T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"7.2","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true},"endOfLifeDate":"2020-11-30T00:00:00Z"}}},{"displayText":"PHP @@ -447,24 +440,32 @@ interactions: 2.3","value":"2.3","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"RUBY|2.3","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"endOfLifeDate":"2019-03-31T00:00:00Z"}}},{"displayText":"Ruby 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 - 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":"2031-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2031-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":"2031-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.3","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2031-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":"2031-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.2","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2031-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":"2031-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"17.0.1","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"17"},"endOfLifeDate":"2031-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":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11","isAutoUpdate":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-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":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.15","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.14","value":"11.0.14","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.13","value":"11.0.13","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.13","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.12","value":"11.0.12","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.12","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.11","value":"11.0.11","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.9","value":"11.0.9","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.8","value":"11.0.8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11.0.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.7","value":"11.0.7","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.6","value":"11.0.6","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.6","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"}}},{"displayText":"Java - 11.0.5","value":"11.0.5","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-09-01T00:00:00Z"},"windowsRuntimeSettings":{"runtimeVersion":"11.0.5_ZULU","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2026-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":"2026-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":"2026-09-01T00:00:00Z"}}}]},{"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.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.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.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 + 11.0.14","value":"11.0.14","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.14","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.13","value":"11.0.13","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.13","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.12","value":"11.0.12","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.12","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.11","value":"11.0.11","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.11","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.9","value":"11.0.9","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.9","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.8","value":"11.0.8","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"11.0.8","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.7","value":"11.0.7","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.7","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 11.0.6","value":"11.0.6","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.6","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":true,"isDefaultOff":false},"gitHubActionSettings":{"isSupported":true,"supportedVersion":"11"},"endOfLifeDate":"2027-09-01T00:00:00Z"}}},{"displayText":"Java + 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 @@ -502,10 +503,15 @@ interactions: 1.7.0_51 (Oracle)","value":"7.0.51 (Oracle)","stackSettings":{"windowsRuntimeSettings":{"runtimeVersion":"1.7.0_51","isDeprecated":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false,"isDefaultOff":true},"gitHubActionSettings":{"isSupported":false}}}}]}]}},{"id":null,"name":"javacontainers","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Java 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":{"java17Runtime":"JAVA|17-java17","java11Runtime":"JAVA|11-java11","java8Runtime":"JAVA|8-jre8","isAutoUpdate":true}}},{"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.1","value":"21.0.1","stackSettings":{"linuxContainerSettings":{"java21Runtime":"JAVA|21.0.1"}}},{"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.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 SE 11.0.14","value":"11.0.14","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.14"}}},{"displayText":"Java SE 11.0.13","value":"11.0.13","stackSettings":{"linuxContainerSettings":{"java11Runtime":"JAVA|11.0.13"}}},{"displayText":"Java @@ -515,6 +521,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 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 SE 8u322","value":"1.8.322","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u322"}}},{"displayText":"Java SE 8u312","value":"1.8.312","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JAVA|8u312"}}},{"displayText":"Java @@ -525,8 +533,10 @@ interactions: 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 7","value":"jbosseap","minorVersions":[{"displayText":"Red Hat - JBoss EAP 7","value":"7","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7-java8","java11Runtime":"JBOSSEAP|7-java11","isAutoUpdate":true}}},{"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"}}},{"displayText":"Red + 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.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 Hat JBoss EAP 7.4.2","value":"7.4.2","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.2-java8","java11Runtime":"JBOSSEAP|7.4.2-java11"}}},{"displayText":"Red Hat JBoss EAP 7.4.1","value":"7.4.1","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.1-java8","java11Runtime":"JBOSSEAP|7.4.1-java11"}}},{"displayText":"Red Hat JBoss EAP 7.4.0","value":"7.4.0","stackSettings":{"linuxContainerSettings":{"java8Runtime":"JBOSSEAP|7.4.0-java8","java11Runtime":"JBOSSEAP|7.4.0-java11"}}},{"displayText":"Red @@ -535,13 +545,20 @@ interactions: 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 + 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.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},"linuxContainerSettings":{"java17Runtime":"TOMCAT|10.0-java17","java11Runtime":"TOMCAT|10.0-java11","java8Runtime":"TOMCAT|10.0-jre8","isAutoUpdate":true}}},{"displayText":"Apache + Tomcat 10.0.27","value":"10.0.27","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.27"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.27-java8","java11Runtime":"TOMCAT|10.0.27-java11","java17Runtime":"TOMCAT|10.0.27-java17"}}},{"displayText":"Apache + Tomcat 10.0.23","value":"10.0.23","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.23"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.23-java8","java11Runtime":"TOMCAT|10.0.23-java11","java17Runtime":"TOMCAT|10.0.23-java17"}}},{"displayText":"Apache Tomcat 10.0.21","value":"10.0.21","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.21"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.21-java8","java11Runtime":"TOMCAT|10.0.21-java11","java17Runtime":"TOMCAT|10.0.21-java17"}}},{"displayText":"Apache Tomcat 10.0.20","value":"10.0.20","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.20"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.20-java8","java11Runtime":"TOMCAT|10.0.20-java11","java17Runtime":"TOMCAT|10.0.20-java17"}}},{"displayText":"Apache Tomcat 10.0.12","value":"10.0.12","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"10.0.12"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|10.0.12-java8","java11Runtime":"TOMCAT|10.0.12-java11","java17Runtime":"TOMCAT|10.0.12-java17"}}}]},{"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":{"java17Runtime":"TOMCAT|9.0-java17","java11Runtime":"TOMCAT|9.0-java11","java8Runtime":"TOMCAT|9.0-jre8","isAutoUpdate":true}}},{"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"}}},{"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 Tomcat 9.0.62","value":"9.0.62","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.62"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.62-java8","java11Runtime":"TOMCAT|9.0.62-java11","java17Runtime":"TOMCAT|9.0.62-java17"}}},{"displayText":"Apache Tomcat 9.0.54","value":"9.0.54","stackSettings":{"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"9.0.54"},"linuxContainerSettings":{"java8Runtime":"TOMCAT|9.0.54-java8","java11Runtime":"TOMCAT|9.0.54-java11","java17Runtime":"TOMCAT|9.0.54-java17"}}},{"displayText":"Apache @@ -561,6 +578,8 @@ 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},"linuxContainerSettings":{"java11Runtime":"TOMCAT|8.5-java11","java8Runtime":"TOMCAT|8.5-jre8","isAutoUpdate":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"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.96"}}},{"displayText":"Apache + Tomcat 8.5.82","value":"8.5.82","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.82-java8","java11Runtime":"TOMCAT|8.5.82-java11"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.82"}}},{"displayText":"Apache Tomcat 8.5.79","value":"8.5.79","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.79-java8","java11Runtime":"TOMCAT|8.5.79-java11"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.79"}}},{"displayText":"Apache Tomcat 8.5.78","value":"8.5.78","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.78-java8","java11Runtime":"TOMCAT|8.5.78-java11"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.78"}}},{"displayText":"Apache Tomcat 8.5.72","value":"8.5.72","stackSettings":{"linuxContainerSettings":{"java8Runtime":"TOMCAT|8.5.72-java8","java11Runtime":"TOMCAT|8.5.72-java11"},"windowsContainerSettings":{"javaContainer":"TOMCAT","javaContainerVersion":"8.5.72"}}},{"displayText":"Apache @@ -600,33 +619,31 @@ interactions: (Static Content)","value":"staticsite","preferredOs":"linux","majorVersions":[{"displayText":"HTML (Static Content)","value":"1","minorVersions":[{"displayText":"HTML (Static Content)","value":"1.0","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"STATICSITE|1.0","isHidden":true,"remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false}}}}]}]}},{"id":null,"name":"go","type":"Microsoft.Web/webAppStacks?stackOsType=All","properties":{"displayText":"Go","value":"go","preferredOs":"linux","majorVersions":[{"displayText":"Go - 1","value":"go1","minorVersions":[{"displayText":"Go 1.19 (Experimental)","value":"go1.19","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"GO|1.19","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true},"isHidden":false,"isEarlyAccess":false}}},{"displayText":"Go - 1.18 (Experimental)","value":"go1.18","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"GO|1.18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"isHidden":false,"isEarlyAccess":false,"isDeprecated":true}}}]}]}}],"nextLink":null,"id":null}' + 1","value":"go1","minorVersions":[{"displayText":"Go 1.19 (Experimental)","value":"go1.19","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"GO|1.19","remoteDebuggingSupported":false,"isDeprecated":true,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":true},"supportedFeatures":{"disableSsh":true},"isHidden":false,"isEarlyAccess":false}}},{"displayText":"Go + 1.18 (Experimental)","value":"go1.18","stackSettings":{"linuxRuntimeSettings":{"runtimeVersion":"GO|1.18","remoteDebuggingSupported":false,"appInsightsSettings":{"isSupported":false},"gitHubActionSettings":{"isSupported":false},"supportedFeatures":{"disableSsh":true},"isHidden":false,"isEarlyAccess":false,"isDeprecated":true}}}]}]}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '75043' + - '85255' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:13 GMT + - Mon, 18 Mar 2024 08:59:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: A6BA42D76C16499985633ADDB926108E Ref B: MAA201060513019 Ref C: 2024-03-18T08:59:37Z' x-powered-by: - ASP.NET status: @@ -654,44 +671,42 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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-231.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,"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,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":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":"2023-08-23T01:57:19.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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-211.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,"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-03-18T08:59:41.2033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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,"supportedTlsCipherSuites":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},"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.108","possibleInboundIpAddresses":"40.112.243.108","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-231.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.176.70,20.228.95.95,20.228.95.96,20.228.95.227,20.237.175.247,20.66.45.207,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,40.112.243.108","possibleOutboundIpAddresses":"20.245.176.70,20.228.95.95,20.228.95.96,20.228.95.227,20.237.175.247,20.66.45.207,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,20.66.42.149,20.66.44.155,20.66.56.187,20.237.171.11,20.66.58.18,20.66.58.57,20.66.58.64,20.245.177.80,20.66.58.66,20.66.45.209,20.66.58.181,20.66.59.64,20.66.59.71,20.66.46.96,20.66.59.224,20.66.60.135,20.66.60.232,20.66.61.53,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,20.237.242.142,20.245.177.92,20.66.61.170,20.66.61.223,20.66.62.19,20.237.171.198,40.112.243.108","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-231","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":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","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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.100","possibleInboundIpAddresses":"40.112.243.100","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-211.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,40.112.243.100","possibleOutboundIpAddresses":"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,20.237.251.60,20.237.252.25,20.237.252.118,20.237.253.80,20.237.254.48,20.237.254.59,20.237.252.12,20.237.252.27,20.237.253.174,20.237.254.98,20.237.254.101,20.237.251.38,20.237.254.186,20.237.249.154,20.237.255.58,20.237.254.162,20.237.254.204,20.237.255.0,20.237.255.39,20.237.255.66,20.237.255.85,20.237.255.106,20.237.255.110,20.237.252.184,40.112.243.100","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-211","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","inFlightFeatures":null,"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '7196' + - '7257' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:38 GMT + - Mon, 18 Mar 2024 08:59:58 GMT etag: - - '"1D9D56526752C0B"' + - '"1DA79129D6587E0"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '499' + x-msedge-ref: + - 'Ref A: 782C0D2ADD1940A5BCA5917E86191247 Ref B: MAA201060515009 Ref C: 2024-03-18T08:59:38Z' x-powered-by: - ASP.NET status: @@ -715,27 +730,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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: body: string: headers: cache-control: @@ -745,21 +760,23 @@ interactions: content-type: - application/xml date: - - Wed, 23 Aug 2023 01:57:39 GMT + - Mon, 18 Mar 2024 09:00:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: C0D54D207D554D5EAC390FDF5B6DCB23 Ref B: MAA201060514029 Ref C: 2024-03-18T08:59:59Z' x-powered-by: - ASP.NET status: @@ -779,8 +796,7 @@ interactions: ParameterSetName: - -g --app --web-app --enable-profiler --enable-snapshot-debugger User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.10.9 - (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Insights/components/clitestai000002?api-version=2018-05-01-preview response: @@ -788,13 +804,13 @@ interactions: string: "{\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 \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"100092de-0000-0200-0000-64e567610000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0029d6-0000-0200-0000-65f8026a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"clitestai000002\",\r\n \"AppId\"\ - : \"c57305c0-173b-4f20-a841-6d3e920aea7a\",\r\n \"Application_Type\": \"\ + : \"b1cdcff1-2ae7-4bfd-a934-e26383d36294\",\r\n \"Application_Type\": \"\ web\",\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"\ - rest\",\r\n \"InstrumentationKey\": \"65efcf05-3949-4c61-b64a-991d2291f1e1\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=65efcf05-3949-4c61-b64a-991d2291f1e1;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2023-08-23T01:56:49.1203725+00:00\"\ + rest\",\r\n \"InstrumentationKey\": \"f5a6be5e-1867-4e64-9a1c-18db55ef3fb8\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=f5a6be5e-1867-4e64-9a1c-18db55ef3fb8;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"clitestai000002\",\r\n \"CreationDate\": \"2024-03-18T08:59:21.9383347+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\"\ @@ -810,23 +826,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Aug 2023 01:57:41 GMT + - Mon, 18 Mar 2024 09:00:02 GMT expires: - '-1' pragma: - no-cache request-context: - - appId=cid-v1:60b64f55-e716-48c8-8b96-83eb9c6a7a9b - server: - - Microsoft-IIS/10.0 + - appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 5AA1BC06F7AA468F819DA180E6DBADE6 Ref B: MAA201060514027 Ref C: 2024-03-18T09:00:01Z' x-powered-by: - ASP.NET status: @@ -848,7 +862,7 @@ interactions: ParameterSetName: - -g --app --web-app --enable-profiler --enable-snapshot-debugger User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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: @@ -863,25 +877,23 @@ interactions: content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:44 GMT + - Mon, 18 Mar 2024 09:00:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: EE4914F1B2024C84AB4D074B5CBF0B01 Ref B: MAA201060514047 Ref C: 2024-03-18T09:00:03Z' x-powered-by: - ASP.NET status: @@ -891,7 +903,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -901,40 +913,38 @@ interactions: ParameterSetName: - -g --app --web-app --enable-profiler --enable-snapshot-debugger User-Agent: - - python/3.10.9 (Windows-10-10.0.22621-SP0) AZURECLI/2.51.0 + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-231.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,"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,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":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":"2023-08-23T01:57:37.4033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":null,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.108","possibleInboundIpAddresses":"40.112.243.108","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-231.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.176.70,20.228.95.95,20.228.95.96,20.228.95.227,20.237.175.247,20.66.45.207,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,40.112.243.108","possibleOutboundIpAddresses":"20.245.176.70,20.228.95.95,20.228.95.96,20.228.95.227,20.237.175.247,20.66.45.207,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,20.66.42.149,20.66.44.155,20.66.56.187,20.237.171.11,20.66.58.18,20.66.58.57,20.66.58.64,20.245.177.80,20.66.58.66,20.66.45.209,20.66.58.181,20.66.59.64,20.66.59.71,20.66.46.96,20.66.59.224,20.66.60.135,20.66.60.232,20.66.61.53,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,20.237.242.142,20.245.177.92,20.66.61.170,20.66.61.223,20.66.62.19,20.237.171.198,40.112.243.108","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-231","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","inFlightFeatures":[],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null}}' + US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-211.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,"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-03-18T08:59:58.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":null,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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.100","possibleInboundIpAddresses":"40.112.243.100","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-211.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,40.112.243.100","possibleOutboundIpAddresses":"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,20.237.251.60,20.237.252.25,20.237.252.118,20.237.253.80,20.237.254.48,20.237.254.59,20.237.252.12,20.237.252.27,20.237.253.174,20.237.254.98,20.237.254.101,20.237.251.38,20.237.254.186,20.237.249.154,20.237.255.58,20.237.254.162,20.237.254.204,20.237.255.0,20.237.255.39,20.237.255.66,20.237.255.85,20.237.255.106,20.237.255.110,20.237.252.184,40.112.243.100","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-211","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6980' + - '7052' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:44 GMT + - Mon, 18 Mar 2024 09:00:11 GMT etag: - - '"1D9D56530F6C9B5"' + - '"1DA7912A7763B4B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FE47E34773D24FF59CD312CA71F79885 Ref B: MAA201060513051 Ref C: 2024-03-18T09:00:10Z' x-powered-by: - ASP.NET status: @@ -942,8 +952,9 @@ interactions: message: OK - request: body: '{"properties": {"WEBSITE_NODE_DEFAULT_VERSION": "~16", "APPINSIGHTS_INSTRUMENTATIONKEY": - "65efcf05-3949-4c61-b64a-991d2291f1e1", "APPINSIGHTS_PROFILERFEATURE_VERSION": - "1.0.0", "APPINSIGHTS_SNAPSHOTFEATURE_VERSION": "1.0.0"}}' + "f5a6be5e-1867-4e64-9a1c-18db55ef3fb8", "APPINSIGHTS_CONNECTIONSTRING": "InstrumentationKey=f5a6be5e-1867-4e64-9a1c-18db55ef3fb8;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/", + "APPINSIGHTS_PROFILERFEATURE_VERSION": "1.0.0", "APPINSIGHTS_SNAPSHOTFEATURE_VERSION": + "1.0.0"}}' headers: Accept: - application/json @@ -954,48 +965,46 @@ interactions: Connection: - keep-alive Content-Length: - - '225' + - '448' Content-Type: - application/json ParameterSetName: - -g --app --web-app --enable-profiler --enable-snapshot-debugger User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"65efcf05-3949-4c61-b64a-991d2291f1e1","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"~16","APPINSIGHTS_INSTRUMENTATIONKEY":"f5a6be5e-1867-4e64-9a1c-18db55ef3fb8","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=f5a6be5e-1867-4e64-9a1c-18db55ef3fb8;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}' headers: cache-control: - no-cache content-length: - - '455' + - '676' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:48 GMT + - Mon, 18 Mar 2024 09:00:14 GMT etag: - - '"1D9D56530F6C9B5"' + - '"1DA7912A7763B4B"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 790A8D4E308E4C5EB458524F9643345E Ref B: MAA201060516039 Ref C: 2024-03-18T09:00:12Z' x-powered-by: - ASP.NET status: @@ -1017,40 +1026,38 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-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":"65efcf05-3949-4c61-b64a-991d2291f1e1","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"~16","APPINSIGHTS_INSTRUMENTATIONKEY":"f5a6be5e-1867-4e64-9a1c-18db55ef3fb8","APPINSIGHTS_CONNECTIONSTRING":"InstrumentationKey=f5a6be5e-1867-4e64-9a1c-18db55ef3fb8;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/","APPINSIGHTS_PROFILERFEATURE_VERSION":"1.0.0","APPINSIGHTS_SNAPSHOTFEATURE_VERSION":"1.0.0"}}' headers: cache-control: - no-cache content-length: - - '455' + - '676' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:51 GMT + - Mon, 18 Mar 2024 09:00:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' + x-msedge-ref: + - 'Ref A: A74F70BD5C1E466F8A6A1CEFB35BB016 Ref B: MAA201060516035 Ref C: 2024-03-18T09:00:16Z' x-powered-by: - ASP.NET status: @@ -1060,7 +1067,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1070,40 +1077,38 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.10.9 (Windows-10-10.0.22621-SP0) AZURECLI/2.51.0 + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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-231.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,"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,"thumbprint":null,"certificateResourceId":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestwebapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":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":"2023-08-23T01:57:48.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":null,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"vnetBackupRestoreEnabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"253001F2FCF5A7B1CD759EB861E9BB1596370BE27E47A991F72184277B3D12F2","kind":"app","managedEnvironmentId":null,"inboundIpAddress":"40.112.243.108","possibleInboundIpAddresses":"40.112.243.108","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-231.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.245.176.70,20.228.95.95,20.228.95.96,20.228.95.227,20.237.175.247,20.66.45.207,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,40.112.243.108","possibleOutboundIpAddresses":"20.245.176.70,20.228.95.95,20.228.95.96,20.228.95.227,20.237.175.247,20.66.45.207,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,20.66.42.149,20.66.44.155,20.66.56.187,20.237.171.11,20.66.58.18,20.66.58.57,20.66.58.64,20.245.177.80,20.66.58.66,20.66.45.209,20.66.58.181,20.66.59.64,20.66.59.71,20.66.46.96,20.66.59.224,20.66.60.135,20.66.60.232,20.66.61.53,20.237.241.40,20.237.241.29,20.237.241.230,20.237.242.20,20.237.242.45,20.237.241.218,20.237.242.142,20.245.177.92,20.66.61.170,20.66.61.223,20.66.62.19,20.237.171.198,40.112.243.108","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-231","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"clitestwebapp000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"endToEndEncryptionEnabled":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"publicNetworkAccess":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","inFlightFeatures":[],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null}}' + US","properties":{"name":"clitestwebapp000003","state":"Running","hostNames":["clitestwebapp000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-211.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,"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-03-18T09:00:14.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","dnsConfiguration":{},"vnetRouteAllEnabled":false,"containerAllocationSubnet":null,"useContainerLocalhostBindings":null,"vnetImagePullEnabled":false,"vnetContentShareEnabled":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":null,"ipSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsDefaultAction":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"minTlsCipherSuite":null,"supportedTlsCipherSuites":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},"functionAppConfig":null,"daprConfig":null,"deploymentId":"clitestwebapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"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.100","possibleInboundIpAddresses":"40.112.243.100","ftpUsername":"clitestwebapp000003\\$clitestwebapp000003","ftpsHostName":"ftps://waws-prod-bay-211.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,40.112.243.100","possibleOutboundIpAddresses":"20.237.249.238,20.237.249.247,20.237.249.253,20.237.250.152,20.237.250.188,20.237.249.163,20.237.251.60,20.237.252.25,20.237.252.118,20.237.253.80,20.237.254.48,20.237.254.59,20.237.252.12,20.237.252.27,20.237.253.174,20.237.254.98,20.237.254.101,20.237.251.38,20.237.254.186,20.237.249.154,20.237.255.58,20.237.254.162,20.237.254.204,20.237.255.0,20.237.255.39,20.237.255.66,20.237.255.85,20.237.255.106,20.237.255.110,20.237.252.184,40.112.243.100","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-211","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","inFlightFeatures":["SiteContainers"],"storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned","defaultHostNameScope":"Global","privateLinkIdentifiers":null,"sshEnabled":null}}' headers: cache-control: - no-cache content-length: - - '6974' + - '7047' content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:53 GMT + - Mon, 18 Mar 2024 09:00:19 GMT etag: - - '"1D9D56537663A80"' + - '"1DA7912B0FB91A0"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9BE68187D96144B9B477013CBE3FECA2 Ref B: MAA201060515049 Ref C: 2024-03-18T09:00:18Z' x-powered-by: - ASP.NET status: @@ -1123,7 +1128,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.51.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/clitestwebapp000003/config/slotConfigNames?api-version=2023-01-01 response: @@ -1138,23 +1143,21 @@ interactions: content-type: - application/json date: - - Wed, 23 Aug 2023 01:57:54 GMT + - Mon, 18 Mar 2024 09:00:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 26EB9E4951C84D5088EBD6C00C5398A6 Ref B: MAA201060516033 Ref C: 2024-03-18T09:00:20Z' x-powered-by: - ASP.NET status: diff --git a/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py b/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py index 5aa2a034589..596a77da573 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py +++ b/src/application-insights/azext_applicationinsights/tests/latest/test_applicationinsights_mgmt.py @@ -94,7 +94,10 @@ def test_connect_webapp(self, resource_group, location): self.check('provisioningState', 'Succeeded') ]) - app_insights_instrumentation_key = self.cmd('az monitor app-insights component show -g {resource_group} --app {ai_name}').get_output_in_json()['instrumentationKey'] + app_config = self.cmd('az monitor app-insights component show -g {resource_group} --app {ai_name}').get_output_in_json() + + app_insights_instrumentation_key = app_config['instrumentationKey'] + app_insights_connection_string = app_config['connectionString'] # Create web app. webapp_name = self.create_random_name('clitestwebapp', 24) @@ -117,7 +120,8 @@ def test_connect_webapp(self, resource_group, location): self.cmd('az webapp config appsettings list -g {resource_group} -n {webapp_name}', checks=[ self.check("[?name=='APPINSIGHTS_PROFILERFEATURE_VERSION']|[0].value", '1.0.0'), self.check("[?name=='APPINSIGHTS_SNAPSHOTFEATURE_VERSION']|[0].value", '1.0.0'), - self.check("[?name=='APPINSIGHTS_INSTRUMENTATIONKEY']|[0].value", app_insights_instrumentation_key) + self.check("[?name=='APPINSIGHTS_INSTRUMENTATIONKEY']|[0].value", app_insights_instrumentation_key), + self.check("[?name=='APPINSIGHTS_CONNECTIONSTRING']|[0].value", app_insights_connection_string) ]) @ResourceGroupPreparer(name_prefix="webapp_cross_rg", parameter_name="resource_group", parameter_name_for_location="location") @@ -193,7 +197,10 @@ def test_connect_function(self, resource_group, storage_account, location): self.check('provisioningState', 'Succeeded') ]) - app_insights_instrumentation_key = self.cmd('az monitor app-insights component show -g {resource_group} --app {ai_name}').get_output_in_json()['instrumentationKey'] + app_config = self.cmd('az monitor app-insights component show -g {resource_group} --app {ai_name}').get_output_in_json() + + app_insights_instrumentation_key = app_config['instrumentationKey'] + app_insights_conenction_string = app_config["connectionString"] # Create Azure function. function_name = self.create_random_name('clitestfunction', 24) @@ -204,7 +211,7 @@ def test_connect_function(self, resource_group, storage_account, location): }) self.cmd('az appservice plan create -g {resource_group} -n {plan}') - self.cmd('az functionapp create -g {resource_group} -n {function_name} --plan {plan} -s {sa} --functions-version 3 --runtime node', checks=[ + self.cmd('az functionapp create -g {resource_group} -n {function_name} --plan {plan} -s {sa} --functions-version 4 --runtime node', checks=[ self.check('state', 'Running'), self.check('name', function_name) ]) @@ -214,7 +221,8 @@ def test_connect_function(self, resource_group, storage_account, location): # Check if the settings are updated correctly. self.cmd('az webapp config appsettings list -g {resource_group} -n {function_name}', checks=[ - self.check("[?name=='APPINSIGHTS_INSTRUMENTATIONKEY']|[0].value", app_insights_instrumentation_key) + self.check("[?name=='APPINSIGHTS_INSTRUMENTATIONKEY']|[0].value", app_insights_instrumentation_key), + self.check("[?name=='APPINSIGHTS_CONNECTIONSTRING']|[0].value", app_insights_conenction_string) ]) @ResourceGroupPreparer(name_prefix="connect_function_cross_rg", parameter_name="resource_group", parameter_name_for_location="location") @@ -252,7 +260,7 @@ def test_connect_function_cross_resource_groups(self, resource_group, resource_g }) self.cmd('az appservice plan create -g {resource_group2} -n {plan}') - self.kwargs['functionapp_id'] = self.cmd('az functionapp create -g {resource_group2} -n {function_name} --plan {plan} -s {sa} --functions-version 3 --runtime node', checks=[ + self.kwargs['functionapp_id'] = self.cmd('az functionapp create -g {resource_group2} -n {function_name} --plan {plan} -s {sa} --functions-version 4 --runtime node', checks=[ self.check('state', 'Running'), self.check('name', function_name) ]).get_output_in_json()['id'] diff --git a/src/application-insights/setup.py b/src/application-insights/setup.py index 53cdfdb6039..7febac0df24 100644 --- a/src/application-insights/setup.py +++ b/src/application-insights/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "1.2.0" +VERSION = "1.2.1" CLASSIFIERS = [ 'Development Status :: 4 - Beta', From 5473dcecd63b948446e918964fb7a694cfbb9fd7 Mon Sep 17 00:00:00 2001 From: AllyW Date: Mon, 18 Mar 2024 17:21:11 +0800 Subject: [PATCH 3/3] add test yaml --- .../test_component_with_linked_storage.yaml | 60 ++-- .../test_component_with_linked_workspace.yaml | 272 +++++++++--------- ..._component_with_public_network_access.yaml | 188 ++++++------ 3 files changed, 260 insertions(+), 260 deletions(-) diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml index 4db0c9aecbf..1a8f1561d38 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml +++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_storage.yaml @@ -18,7 +18,7 @@ interactions: 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_component_with_linked_storage","date":"2024-03-18T08:54:56Z","module":"application-insights","DateCreated":"2024-03-18T08:55:04Z","Creator":"liwang3@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_component_with_linked_storage","date":"2024-03-18T09:19:18Z","module":"application-insights","DateCreated":"2024-03-18T09:19:26Z","Creator":"liwang3@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:55:56 GMT + - Mon, 18 Mar 2024 09:20:17 GMT expires: - '-1' pragma: @@ -39,7 +39,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 58B4AA068E284E1B8C0B1AD3B056D297 Ref B: MAA201060516011 Ref C: 2024-03-18T08:55:57Z' + - 'Ref A: D0952402E2374F3E87B922F029A9F09D Ref B: MAA201060513019 Ref C: 2024-03-18T09:20:17Z' status: code: 200 message: OK @@ -65,10 +65,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"bc02f5eb-5863-4dd9-852a-9f2924a28773","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:55:59.1824857Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:55:59.1824857Z","modifiedDate":"2024-03-18T08:55:59.1824857Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99007c7d-0000-0700-0000-65f8019f0000\""}' + string: '{"properties":{"customerId":"33c48a06-6007-477d-943b-8e6de01ec9e5","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:20:19.5622416Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:20:19.5622416Z","modifiedDate":"2024-03-18T09:20:19.5622416Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00931a-0000-0700-0000-65f807530000\""}' headers: access-control-allow-origin: - '*' @@ -81,11 +81,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:55:59 GMT + - Mon, 18 Mar 2024 09:20:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2023-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2022-10-01 pragma: - no-cache request-context: @@ -97,9 +97,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-msedge-ref: - - 'Ref A: DB5AED6B80EA475BB7460C6ABF126764 Ref B: MAA201060514047 Ref C: 2024-03-18T08:55:57Z' + - 'Ref A: DF374E00ADE9480A83BF45809733395A Ref B: MAA201060513035 Ref C: 2024-03-18T09:20:18Z' x-powered-by: - ASP.NET status: @@ -121,10 +121,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"bc02f5eb-5863-4dd9-852a-9f2924a28773","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:55:59.1824857Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:55:59.1824857Z","modifiedDate":"2024-03-18T08:55:59.1824857Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99007c7d-0000-0700-0000-65f8019f0000\""}' + string: '{"properties":{"customerId":"33c48a06-6007-477d-943b-8e6de01ec9e5","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:20:19.5622416Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:20:19.5622416Z","modifiedDate":"2024-03-18T09:20:19.5622416Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000004","name":"clitest000004","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00931a-0000-0700-0000-65f807530000\""}' headers: access-control-allow-origin: - '*' @@ -137,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:56:00 GMT + - Mon, 18 Mar 2024 09:20:20 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 107FE2A7B0234A15B37D0C5B54BC4C67 Ref B: MAA201060514047 Ref C: 2024-03-18T08:55:59Z' + - 'Ref A: 3D4499761C104ED78BA166997C66C622 Ref B: MAA201060513035 Ref C: 2024-03-18T09:20:20Z' x-powered-by: - ASP.NET status: @@ -186,13 +186,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d0057d1-0000-0200-0000-65f801a40000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00c2f7-0000-0200-0000-65f807570000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 435c4d82-8638-42ff-abeb-8a0f3a712b0f\",\r\n \"Application_Type\": \"web\"\ + 9bec6431-e2b2-4f79-8299-d517e1ef408c\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"92fb047e-7192-4f9b-a68c-1a9128b8b00c\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=92fb047e-7192-4f9b-a68c-1a9128b8b00c;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:56:04.4723002+00:00\"\ + ,\r\n \"InstrumentationKey\": \"64dcea6d-5f44-44a4-b4fc-a89454ed9bfb\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=64dcea6d-5f44-44a4-b4fc-a89454ed9bfb;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:20:23.2595509+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000004\"\ @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:56:04 GMT + - Mon, 18 Mar 2024 09:20:24 GMT expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 8EA5A166BD084A69A1E41F8F77587613 Ref B: MAA201060516033 Ref C: 2024-03-18T08:56:01Z' + - 'Ref A: 9662AF604BF64148A53BE8C3507DBC42 Ref B: MAA201060515053 Ref C: 2024-03-18T09:20:22Z' x-powered-by: - ASP.NET status: @@ -268,7 +268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:56:08 GMT + - Mon, 18 Mar 2024 09:20:27 GMT expires: - '-1' pragma: @@ -284,7 +284,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: A89771159A1E423F858BEE1E5589113F Ref B: MAA201060513037 Ref C: 2024-03-18T08:56:06Z' + - 'Ref A: 7D41BFB85F8F4884961F4F5B0466FDD9 Ref B: MAA201060513045 Ref C: 2024-03-18T09:20:24Z' x-powered-by: - ASP.NET status: @@ -323,7 +323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:56:10 GMT + - Mon, 18 Mar 2024 09:20:29 GMT expires: - '-1' pragma: @@ -337,7 +337,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DF131BFE8DCC4FDEA9AEA83ED43DBA6D Ref B: MAA201060513023 Ref C: 2024-03-18T08:56:09Z' + - 'Ref A: 22DF10F0C4BC4F3E99724EDCC27B2947 Ref B: MAA201060515045 Ref C: 2024-03-18T09:20:28Z' x-powered-by: - ASP.NET status: @@ -380,7 +380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:56:15 GMT + - Mon, 18 Mar 2024 09:20:32 GMT expires: - '-1' pragma: @@ -396,7 +396,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: B03A56BED8F544B9AD9B09D91A80296E Ref B: MAA201060516049 Ref C: 2024-03-18T08:56:12Z' + - 'Ref A: 0E89BA70D3D249C182F5B517E0A767AD Ref B: MAA201060514029 Ref C: 2024-03-18T09:20:30Z' x-powered-by: - ASP.NET status: @@ -432,7 +432,7 @@ interactions: content-length: - '0' date: - - Mon, 18 Mar 2024 08:56:17 GMT + - Mon, 18 Mar 2024 09:20:36 GMT expires: - '-1' pragma: @@ -448,7 +448,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: 4925A631A3E948189AE08B521D11C061 Ref B: MAA201060516019 Ref C: 2024-03-18T08:56:15Z' + - 'Ref A: 6CA89F8C5E9B42BE98DE28960F277A75 Ref B: MAA201060514025 Ref C: 2024-03-18T09:20:34Z' x-powered-by: - ASP.NET status: @@ -484,7 +484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:56:19 GMT + - Mon, 18 Mar 2024 09:20:37 GMT expires: - '-1' pragma: @@ -498,7 +498,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 4706C4D6856148CC868AA1A775D791B2 Ref B: MAA201060516023 Ref C: 2024-03-18T08:56:18Z' + - 'Ref A: E031AC4725564881B79F2AB2A82CB2C9 Ref B: MAA201060515051 Ref C: 2024-03-18T09:20:36Z' x-powered-by: - ASP.NET status: diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml index 3c5c30e094e..2bb580fc78f 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml +++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_linked_workspace.yaml @@ -18,7 +18,7 @@ interactions: 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_component_with_linked_workspace","date":"2024-03-18T08:44:16Z","module":"application-insights"},"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_component_with_linked_workspace","date":"2024-03-18T09:19:18Z","module":"application-insights"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:24 GMT + - Mon, 18 Mar 2024 09:19:26 GMT expires: - '-1' pragma: @@ -39,7 +39,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0A2802C5C557402182653B2C3596C8A6 Ref B: MAA201060515047 Ref C: 2024-03-18T08:44:24Z' + - 'Ref A: 8BAECB42ECEE4FF5A9846FEAB1A8434F Ref B: MAA201060516029 Ref C: 2024-03-18T09:19:26Z' status: code: 200 message: OK @@ -65,10 +65,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:26.8217771Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99005e35-0000-0700-0000-65f7feea0000\""}' + string: '{"properties":{"customerId":"85c8780a-ff39-4892-8480-32dc4ae17163","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:29.2501453Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:29.2501453Z","modifiedDate":"2024-03-18T09:19:29.2501453Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00a415-0000-0700-0000-65f807210000\""}' headers: access-control-allow-origin: - '*' @@ -81,11 +81,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:27 GMT + - Mon, 18 Mar 2024 09:19:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 pragma: - no-cache request-context: @@ -99,7 +99,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: F1D5B8A313BD4B849E5E9D9339E52CEF Ref B: MAA201060513031 Ref C: 2024-03-18T08:44:25Z' + - 'Ref A: 1B3AF70FD6204A25B713BEEE8323EC56 Ref B: MAA201060516049 Ref C: 2024-03-18T09:19:27Z' x-powered-by: - ASP.NET status: @@ -121,10 +121,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:26.8217771Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99005e35-0000-0700-0000-65f7feea0000\""}' + string: '{"properties":{"customerId":"85c8780a-ff39-4892-8480-32dc4ae17163","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:29.2501453Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:29.2501453Z","modifiedDate":"2024-03-18T09:19:29.2501453Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00a415-0000-0700-0000-65f807210000\""}' headers: access-control-allow-origin: - '*' @@ -137,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:28 GMT + - Mon, 18 Mar 2024 09:19:29 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 27A8360BED0647D091115BD54CE17ECB Ref B: MAA201060513031 Ref C: 2024-03-18T08:44:27Z' + - 'Ref A: CE44CC6CC704414B91520CB00575BBE1 Ref B: MAA201060516049 Ref C: 2024-03-18T09:19:29Z' x-powered-by: - ASP.NET status: @@ -176,16 +176,16 @@ interactions: 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_component_with_linked_workspace","date":"2024-03-18T08:44:16Z","module":"application-insights","DateCreated":"2024-03-18T08:44:24Z","Creator":"liwang3@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_component_with_linked_workspace","date":"2024-03-18T09:19:18Z","module":"application-insights"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '459' + - '388' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:28 GMT + - Mon, 18 Mar 2024 09:19:30 GMT expires: - '-1' pragma: @@ -197,7 +197,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B4B1EE265F27442C81E21626B88A512D Ref B: MAA201060516049 Ref C: 2024-03-18T08:44:29Z' + - 'Ref A: 2197B546228D4DA5A36A1EFE7607AB1E Ref B: MAA201060513047 Ref C: 2024-03-18T09:19:31Z' status: code: 200 message: OK @@ -223,10 +223,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"f46c4c5b-88a9-4080-bf74-9696004fb2b7","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:31.288892Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:31.288892Z","modifiedDate":"2024-03-18T08:44:31.288892Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99001036-0000-0700-0000-65f7feef0000\""}' + string: '{"properties":{"customerId":"733efed6-a9c0-4b56-9cc1-cf0667cb6dd6","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:33.5524195Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:33.5524195Z","modifiedDate":"2024-03-18T09:19:33.5524195Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a004e16-0000-0700-0000-65f807250000\""}' headers: access-control-allow-origin: - '*' @@ -235,15 +235,15 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '883' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:31 GMT + - Mon, 18 Mar 2024 09:19:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 pragma: - no-cache request-context: @@ -255,9 +255,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-msedge-ref: - - 'Ref A: 3BBDFA7A63274205819707D755B8BD32 Ref B: MAA201060516021 Ref C: 2024-03-18T08:44:29Z' + - 'Ref A: 8703EC8129F245789E4368B20B39F010 Ref B: MAA201060515019 Ref C: 2024-03-18T09:19:31Z' x-powered-by: - ASP.NET status: @@ -279,10 +279,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"f46c4c5b-88a9-4080-bf74-9696004fb2b7","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:31.288892Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:31.288892Z","modifiedDate":"2024-03-18T08:44:31.288892Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99001036-0000-0700-0000-65f7feef0000\""}' + string: '{"properties":{"customerId":"733efed6-a9c0-4b56-9cc1-cf0667cb6dd6","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:33.5524195Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:33.5524195Z","modifiedDate":"2024-03-18T09:19:33.5524195Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a004e16-0000-0700-0000-65f807250000\""}' headers: access-control-allow-origin: - '*' @@ -291,11 +291,11 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '883' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:32 GMT + - Mon, 18 Mar 2024 09:19:34 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: DC6EFFE463F440D7A34AD8FA646F73A2 Ref B: MAA201060516021 Ref C: 2024-03-18T08:44:31Z' + - 'Ref A: F8C7E7B4CFBE4987BD283EDD7EE0CFA2 Ref B: MAA201060515019 Ref C: 2024-03-18T09:19:34Z' x-powered-by: - ASP.NET status: @@ -343,13 +343,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d008ebf-0000-0200-0000-65f7fef40000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0071f6-0000-0200-0000-65f8072a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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\"\ @@ -365,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:36 GMT + - Mon, 18 Mar 2024 09:19:38 GMT expires: - '-1' pragma: @@ -379,9 +379,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-msedge-ref: - - 'Ref A: C257F5E75DD946C9B0EB2BF4B1DEF513 Ref B: MAA201060513011 Ref C: 2024-03-18T08:44:33Z' + - 'Ref A: 8F5C36DEF5084CD1A798B1E30B6CC500 Ref B: MAA201060515031 Ref C: 2024-03-18T09:19:35Z' x-powered-by: - ASP.NET status: @@ -409,13 +409,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d008ebf-0000-0200-0000-65f7fef40000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0071f6-0000-0200-0000-65f8072a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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\"\ @@ -431,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:38 GMT + - Mon, 18 Mar 2024 09:19:39 GMT expires: - '-1' pragma: @@ -445,7 +445,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FDAEACA3284D473786459DD17CE9756E Ref B: MAA201060514025 Ref C: 2024-03-18T08:44:37Z' + - 'Ref A: 1E7155288EFD4B1A82FAEB404AEA8411 Ref B: MAA201060514019 Ref C: 2024-03-18T09:19:39Z' x-powered-by: - ASP.NET status: @@ -605,7 +605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:38 GMT + - Mon, 18 Mar 2024 09:19:40 GMT expires: - '-1' pragma: @@ -617,7 +617,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B6A5259C2BF64B8AB28EE6858B996F94 Ref B: MAA201060514023 Ref C: 2024-03-18T08:44:39Z' + - 'Ref A: B658A5CE608442C486D5F6B419692372 Ref B: MAA201060515037 Ref C: 2024-03-18T09:19:41Z' status: code: 200 message: OK @@ -640,7 +640,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:28.762289Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99009535-0000-0700-0000-65f7feec0000\""}' + string: '{"properties":{"customerId":"85c8780a-ff39-4892-8480-32dc4ae17163","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:29.2501453Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:29.2501453Z","modifiedDate":"2024-03-18T09:19:31.4454978Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00df15-0000-0700-0000-65f807230000\""}' headers: access-control-allow-origin: - '*' @@ -649,11 +649,11 @@ interactions: cache-control: - no-cache content-length: - - '883' + - '884' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:39 GMT + - Mon, 18 Mar 2024 09:19:41 GMT expires: - '-1' pragma: @@ -667,14 +667,14 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 43131CEB974949D0939A8D22BEE6C3C7 Ref B: MAA201060514023 Ref C: 2024-03-18T08:44:39Z' + - 'Ref A: 025AE45490824661B88C32DDEC40B2F6 Ref B: MAA201060515037 Ref C: 2024-03-18T09:19:41Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d008ebf-0000-0200-0000-65f7fef40000\"", + body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d0071f6-0000-0200-0000-65f8072a0000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002", "publicNetworkAccessForIngestion": "Enabled", "publicNetworkAccessForQuery": @@ -703,18 +703,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d00c8bf-0000-0200-0000-65f7fefa0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d009df6-0000-0200-0000-65f807300000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ - \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ + ,\r\n \"LaMigrationDate\": \"2024-03-18T09:19:44.13154+00:00\",\r\n \ + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" headers: @@ -723,11 +723,11 @@ interactions: cache-control: - no-cache content-length: - - '1448' + - '1446' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:47 GMT + - Mon, 18 Mar 2024 09:19:49 GMT expires: - '-1' pragma: @@ -743,7 +743,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: F37F6C0390F4400BA8321A9143D9BF13 Ref B: MAA201060515023 Ref C: 2024-03-18T08:44:41Z' + - 'Ref A: C244B1F244DD4271AC955EB8BFCBF490 Ref B: MAA201060516009 Ref C: 2024-03-18T09:19:42Z' x-powered-by: - ASP.NET status: @@ -771,18 +771,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d00c8bf-0000-0200-0000-65f7fefa0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d009df6-0000-0200-0000-65f807300000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ - \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ + ,\r\n \"LaMigrationDate\": \"2024-03-18T09:19:44.13154+00:00\",\r\n \ + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" headers: @@ -791,11 +791,11 @@ interactions: cache-control: - no-cache content-length: - - '1448' + - '1446' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:49 GMT + - Mon, 18 Mar 2024 09:19:51 GMT expires: - '-1' pragma: @@ -809,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0221E9CC82964562BB4B050AC71E54C7 Ref B: MAA201060514021 Ref C: 2024-03-18T08:44:48Z' + - 'Ref A: B271106FBC8A4458A64F52BD4629ABA5 Ref B: MAA201060516027 Ref C: 2024-03-18T09:19:50Z' x-powered-by: - ASP.NET status: @@ -969,7 +969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:50 GMT + - Mon, 18 Mar 2024 09:19:51 GMT expires: - '-1' pragma: @@ -981,7 +981,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 02C5D56533D0401589D5D57AC759089C Ref B: MAA201060514027 Ref C: 2024-03-18T08:44:50Z' + - 'Ref A: 173A93AF3C2D4A8299DBAF4D9A1FBDFB Ref B: MAA201060513051 Ref C: 2024-03-18T09:19:51Z' status: code: 200 message: OK @@ -1004,7 +1004,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"f46c4c5b-88a9-4080-bf74-9696004fb2b7","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:31.288892Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:31.288892Z","modifiedDate":"2024-03-18T08:44:32.9115796Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99004136-0000-0700-0000-65f7fef00000\""}' + string: '{"properties":{"customerId":"733efed6-a9c0-4b56-9cc1-cf0667cb6dd6","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:33.5524195Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T06:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:33.5524195Z","modifiedDate":"2024-03-18T09:19:36.5759873Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00cc16-0000-0700-0000-65f807280000\""}' headers: access-control-allow-origin: - '*' @@ -1013,11 +1013,11 @@ interactions: cache-control: - no-cache content-length: - - '882' + - '884' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:51 GMT + - Mon, 18 Mar 2024 09:19:52 GMT expires: - '-1' pragma: @@ -1031,14 +1031,14 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 1FBC9F6369AF4B52B2AAF20DBC98D20C Ref B: MAA201060514027 Ref C: 2024-03-18T08:44:50Z' + - 'Ref A: A26EAAF634AE49C0B46C4AB2AB151B0F Ref B: MAA201060513051 Ref C: 2024-03-18T09:19:52Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d00c8bf-0000-0200-0000-65f7fefa0000\"", + body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d009df6-0000-0200-0000-65f807300000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003", "publicNetworkAccessForIngestion": "Enabled", "publicNetworkAccessForQuery": @@ -1067,18 +1067,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d001ec0-0000-0200-0000-65f7ff050000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00e5f6-0000-0200-0000-65f8073b0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ - ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ - \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ + ,\r\n \"LaMigrationDate\": \"2024-03-18T09:19:44.13154+00:00\",\r\n \ + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" headers: @@ -1087,11 +1087,11 @@ interactions: cache-control: - no-cache content-length: - - '1448' + - '1446' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:44:58 GMT + - Mon, 18 Mar 2024 09:19:59 GMT expires: - '-1' pragma: @@ -1107,7 +1107,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 0D2F8B706DE1451AB17D7E6E49B29314 Ref B: MAA201060516033 Ref C: 2024-03-18T08:44:51Z' + - 'Ref A: F0963FA3D4594428A7B5D220E30D24F2 Ref B: MAA201060514033 Ref C: 2024-03-18T09:19:53Z' x-powered-by: - ASP.NET status: @@ -1135,18 +1135,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d001ec0-0000-0200-0000-65f7ff050000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00e5f6-0000-0200-0000-65f8073b0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ - ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ - \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ + ,\r\n \"LaMigrationDate\": \"2024-03-18T09:19:44.13154+00:00\",\r\n \ + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" headers: @@ -1155,11 +1155,11 @@ interactions: cache-control: - no-cache content-length: - - '1448' + - '1446' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:00 GMT + - Mon, 18 Mar 2024 09:20:02 GMT expires: - '-1' pragma: @@ -1173,7 +1173,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: B10937BAF70244F8860843F288B0D85B Ref B: MAA201060515027 Ref C: 2024-03-18T08:44:59Z' + - 'Ref A: 99B3758C33BE419EA2D54D2D93329F82 Ref B: MAA201060513051 Ref C: 2024-03-18T09:20:00Z' x-powered-by: - ASP.NET status: @@ -1333,7 +1333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:01 GMT + - Mon, 18 Mar 2024 09:20:02 GMT expires: - '-1' pragma: @@ -1345,7 +1345,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E5A1ED1661B44014BCCE627A3AF6701A Ref B: MAA201060516029 Ref C: 2024-03-18T08:45:01Z' + - 'Ref A: 13D52B744C274000A3E4DB301B1A84CA Ref B: MAA201060515031 Ref C: 2024-03-18T09:20:02Z' status: code: 200 message: OK @@ -1368,7 +1368,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"2a97dd30-016a-46c6-b8ce-e7e1b5f6798f","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:44:26.8217771Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T07:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:44:26.8217771Z","modifiedDate":"2024-03-18T08:44:28.762289Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99009535-0000-0700-0000-65f7feec0000\""}' + string: '{"properties":{"customerId":"85c8780a-ff39-4892-8480-32dc4ae17163","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:29.2501453Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:29.2501453Z","modifiedDate":"2024-03-18T09:19:31.4454978Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00df15-0000-0700-0000-65f807230000\""}' headers: access-control-allow-origin: - '*' @@ -1377,11 +1377,11 @@ interactions: cache-control: - no-cache content-length: - - '883' + - '884' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:02 GMT + - Mon, 18 Mar 2024 09:20:04 GMT expires: - '-1' pragma: @@ -1395,14 +1395,14 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 474A65EB45B34ED1926A4954A1392DEF Ref B: MAA201060516029 Ref C: 2024-03-18T08:45:01Z' + - 'Ref A: DD1605EE6278418F9EF0168E084F0FEA Ref B: MAA201060515031 Ref C: 2024-03-18T09:20:03Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "ios", "etag": "\"7d001ec0-0000-0200-0000-65f7ff050000\"", + body: '{"location": "westus", "tags": {}, "kind": "ios", "etag": "\"7d00e5f6-0000-0200-0000-65f8073b0000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002", "publicNetworkAccessForIngestion": "Enabled", "publicNetworkAccessForQuery": @@ -1431,18 +1431,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"7d0079c0-0000-0200-0000-65f7ff100000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0036f7-0000-0200-0000-65f807460000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 8b8ce5d1-9929-4bfb-a1a5-67ea875c4781\",\r\n \"Application_Type\": \"web\"\ + 7a268d85-30c6-4c1d-a409-8ea9b0a645c9\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"da58061e-eceb-497a-be62-c86e61362b4f\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=da58061e-eceb-497a-be62-c86e61362b4f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:44:36.1263509+00:00\"\ + ,\r\n \"InstrumentationKey\": \"50006017-068a-49bb-ac50-006c9ff72a0f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=50006017-068a-49bb-ac50-006c9ff72a0f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:38.0523588+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2024-03-18T08:44:42.3908212+00:00\",\r\n \ - \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ + ,\r\n \"LaMigrationDate\": \"2024-03-18T09:19:44.13154+00:00\",\r\n \ + \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \ \ \"Ver\": \"v2\"\r\n }\r\n}" headers: @@ -1451,11 +1451,11 @@ interactions: cache-control: - no-cache content-length: - - '1448' + - '1446' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:04 GMT + - Mon, 18 Mar 2024 09:20:06 GMT expires: - '-1' pragma: @@ -1469,9 +1469,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: 1E9C396C112A4165824DA91FC8CFE72F Ref B: MAA201060513033 Ref C: 2024-03-18T08:45:02Z' + - 'Ref A: 0E98E3E807914D90A1E39F7DEB17AA43 Ref B: MAA201060514025 Ref C: 2024-03-18T09:20:04Z' x-powered-by: - ASP.NET status: @@ -1506,13 +1506,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"7d008fc0-0000-0200-0000-65f7ff140000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0061f7-0000-0200-0000-65f8074a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 6eecc703-06a2-4e36-ab2a-208d56ce6a3e\",\r\n \"Application_Type\": \"web\"\ + ae2097da-18b9-4d7b-a895-bf56e664983d\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"75239704-1657-4cbb-b611-5403a0ca6491\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=75239704-1657-4cbb-b611-5403a0ca6491;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:45:08.5798494+00:00\"\ + ,\r\n \"InstrumentationKey\": \"65510914-b13b-47f7-a96b-a708f3c32e18\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=65510914-b13b-47f7-a96b-a708f3c32e18;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T09:20:10.0901738+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -1529,7 +1529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:08 GMT + - Mon, 18 Mar 2024 09:20:10 GMT expires: - '-1' pragma: @@ -1545,7 +1545,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 401322DACFBC4E5E89F1A268D5077A3C Ref B: MAA201060514019 Ref C: 2024-03-18T08:45:05Z' + - 'Ref A: E4FA33853E39408EB121B0A74557CEDA Ref B: MAA201060513039 Ref C: 2024-03-18T09:20:07Z' x-powered-by: - ASP.NET status: @@ -1573,13 +1573,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"7d008fc0-0000-0200-0000-65f7ff140000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0061f7-0000-0200-0000-65f8074a0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 6eecc703-06a2-4e36-ab2a-208d56ce6a3e\",\r\n \"Application_Type\": \"web\"\ + ae2097da-18b9-4d7b-a895-bf56e664983d\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"75239704-1657-4cbb-b611-5403a0ca6491\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=75239704-1657-4cbb-b611-5403a0ca6491;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:45:08.5798494+00:00\"\ + ,\r\n \"InstrumentationKey\": \"65510914-b13b-47f7-a96b-a708f3c32e18\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=65510914-b13b-47f7-a96b-a708f3c32e18;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T09:20:10.0901738+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -1596,7 +1596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:11 GMT + - Mon, 18 Mar 2024 09:20:12 GMT expires: - '-1' pragma: @@ -1610,7 +1610,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0574202B236B4DCD91D88C03BAA1B6AE Ref B: MAA201060514031 Ref C: 2024-03-18T08:45:10Z' + - 'Ref A: AFEC9F1EFEA14AE9A7B3000FFD14FFFF Ref B: MAA201060514011 Ref C: 2024-03-18T09:20:11Z' x-powered-by: - ASP.NET status: @@ -1645,13 +1645,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"7d00b9c0-0000-0200-0000-65f7ff180000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0084f7-0000-0200-0000-65f8074e0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 6eecc703-06a2-4e36-ab2a-208d56ce6a3e\",\r\n \"Application_Type\": \"web\"\ + ae2097da-18b9-4d7b-a895-bf56e664983d\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"75239704-1657-4cbb-b611-5403a0ca6491\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=75239704-1657-4cbb-b611-5403a0ca6491;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:45:08.5798494+00:00\"\ + ,\r\n \"InstrumentationKey\": \"65510914-b13b-47f7-a96b-a708f3c32e18\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=65510914-b13b-47f7-a96b-a708f3c32e18;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T09:20:10.0901738+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"WorkspaceResourceId\"\ @@ -1669,7 +1669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:45:15 GMT + - Mon, 18 Mar 2024 09:20:18 GMT expires: - '-1' pragma: @@ -1685,7 +1685,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 2161AC268655476C82D69CD10145858A Ref B: MAA201060514031 Ref C: 2024-03-18T08:45:11Z' + - 'Ref A: C6CAD6FDF1454E00BDADDD81C35D8F97 Ref B: MAA201060514011 Ref C: 2024-03-18T09:20:13Z' x-powered-by: - ASP.NET status: diff --git a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml index b0826e1aaf2..39183aa61ee 100644 --- a/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml +++ b/src/application-insights/azext_applicationinsights/tests/latest/recordings/test_component_with_public_network_access.yaml @@ -18,7 +18,7 @@ interactions: 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_component_with_public_network_access","date":"2024-03-18T08:39:15Z","module":"application-insights"},"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_component_with_public_network_access","date":"2024-03-18T09:19:18Z","module":"application-insights"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:21 GMT + - Mon, 18 Mar 2024 09:19:26 GMT expires: - '-1' pragma: @@ -39,7 +39,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: A5E5025490F640F2AE54A99812E3C2A6 Ref B: MAA201060513029 Ref C: 2024-03-18T08:39:21Z' + - 'Ref A: BCC958AB94394942B3032275D0494519 Ref B: MAA201060515027 Ref C: 2024-03-18T09:19:26Z' status: code: 200 message: OK @@ -65,10 +65,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"deff049e-1ffb-41b3-b4ad-2efcf033fccc","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:26.371347Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:26.371347Z","modifiedDate":"2024-03-18T08:39:26.371347Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99002916-0000-0700-0000-65f7fdbe0000\""}' + string: '{"properties":{"customerId":"58cc9d34-83b0-471c-b782-8e675965ef03","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:28.2859768Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:28.2859768Z","modifiedDate":"2024-03-18T09:19:28.2859768Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a007a15-0000-0700-0000-65f807200000\""}' headers: access-control-allow-origin: - '*' @@ -77,15 +77,15 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '883' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:26 GMT + - Mon, 18 Mar 2024 09:19:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 pragma: - no-cache request-context: @@ -97,9 +97,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-msedge-ref: - - 'Ref A: 8D6504FD212949DB8E387E98B1AAB1B2 Ref B: MAA201060513009 Ref C: 2024-03-18T08:39:22Z' + - 'Ref A: F3497132B3594057853547AEB5A08E5C Ref B: MAA201060514053 Ref C: 2024-03-18T09:19:27Z' x-powered-by: - ASP.NET status: @@ -121,10 +121,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"deff049e-1ffb-41b3-b4ad-2efcf033fccc","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:26.371347Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:26.371347Z","modifiedDate":"2024-03-18T08:39:26.371347Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99002916-0000-0700-0000-65f7fdbe0000\""}' + string: '{"properties":{"customerId":"58cc9d34-83b0-471c-b782-8e675965ef03","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:28.2859768Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:28.2859768Z","modifiedDate":"2024-03-18T09:19:28.2859768Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a007a15-0000-0700-0000-65f807200000\""}' headers: access-control-allow-origin: - '*' @@ -133,11 +133,11 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '883' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:28 GMT + - Mon, 18 Mar 2024 09:19:28 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: FDFC7FF6830B4FD7BFECB5A0C11AA573 Ref B: MAA201060513009 Ref C: 2024-03-18T08:39:26Z' + - 'Ref A: 99A7BFBD73FD41278317DD1E27E42395 Ref B: MAA201060514053 Ref C: 2024-03-18T09:19:28Z' x-powered-by: - ASP.NET status: @@ -176,16 +176,16 @@ interactions: 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_component_with_public_network_access","date":"2024-03-18T08:39:15Z","module":"application-insights","DateCreated":"2024-03-18T08:39:25Z","Creator":"liwang3@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_component_with_public_network_access","date":"2024-03-18T09:19:18Z","module":"application-insights"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '464' + - '393' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:29 GMT + - Mon, 18 Mar 2024 09:19:29 GMT expires: - '-1' pragma: @@ -197,7 +197,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 135783DFDED3469CA26A9A8531546E57 Ref B: MAA201060513027 Ref C: 2024-03-18T08:39:29Z' + - 'Ref A: 7248911D450846B8A2918DE45B5E8584 Ref B: MAA201060513031 Ref C: 2024-03-18T09:19:29Z' status: code: 200 message: OK @@ -223,10 +223,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"7257886f-cc3f-4c5a-9afb-5804835a5c52","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:33.765539Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:33.765539Z","modifiedDate":"2024-03-18T08:39:33.765539Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9900ea16-0000-0700-0000-65f7fdc50000\""}' + string: '{"properties":{"customerId":"654e8eb5-402f-4c20-b8b6-fccdeff6b6ba","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:32.1778249Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:32.1778249Z","modifiedDate":"2024-03-18T09:19:32.1778249Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00f715-0000-0700-0000-65f807240000\""}' headers: access-control-allow-origin: - '*' @@ -235,15 +235,15 @@ interactions: cache-control: - no-cache content-length: - - '880' + - '883' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:33 GMT + - Mon, 18 Mar 2024 09:19:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 pragma: - no-cache request-context: @@ -257,7 +257,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 1CB87C0DCE164816980661D19306AFD8 Ref B: MAA201060514017 Ref C: 2024-03-18T08:39:30Z' + - 'Ref A: 32E52F42016C4996A1D1124F3FF2E226 Ref B: MAA201060515051 Ref C: 2024-03-18T09:19:30Z' x-powered-by: - ASP.NET status: @@ -279,10 +279,10 @@ interactions: User-Agent: - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2023-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003?api-version=2022-10-01 response: body: - string: '{"properties":{"customerId":"7257886f-cc3f-4c5a-9afb-5804835a5c52","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:33.765539Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:33.765539Z","modifiedDate":"2024-03-18T08:39:36.8785644Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99007917-0000-0700-0000-65f7fdc80000\""}' + string: '{"properties":{"customerId":"654e8eb5-402f-4c20-b8b6-fccdeff6b6ba","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:32.1778249Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:32.1778249Z","modifiedDate":"2024-03-18T09:19:32.1778249Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000003","name":"clitest000003","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00f715-0000-0700-0000-65f807240000\""}' headers: access-control-allow-origin: - '*' @@ -291,11 +291,11 @@ interactions: cache-control: - no-cache content-length: - - '882' + - '883' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:36 GMT + - Mon, 18 Mar 2024 09:19:32 GMT expires: - '-1' pragma: @@ -309,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 29535B7451324B1395117C6C3D72BDB6 Ref B: MAA201060514017 Ref C: 2024-03-18T08:39:34Z' + - 'Ref A: AEA3F2C38B3648B8815A8D8240EEFB66 Ref B: MAA201060515051 Ref C: 2024-03-18T09:19:32Z' x-powered-by: - ASP.NET status: @@ -343,13 +343,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d0040b7-0000-0200-0000-65f7fdcd0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0066f6-0000-0200-0000-65f807280000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ + 500116c7-cbb1-4994-93ed-9770421644e5\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ + ,\r\n \"InstrumentationKey\": \"c8eef126-4b15-4a92-8b3b-026dee7df69f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=c8eef126-4b15-4a92-8b3b-026dee7df69f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:36.7553438+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\"\ @@ -365,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:41 GMT + - Mon, 18 Mar 2024 09:19:36 GMT expires: - '-1' pragma: @@ -381,7 +381,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: B20753DBC44049B6AA1A4CE5D4A56D6A Ref B: MAA201060515037 Ref C: 2024-03-18T08:39:38Z' + - 'Ref A: 1565F45431B54529BF17CD7731AD129A Ref B: MAA201060513047 Ref C: 2024-03-18T09:19:34Z' x-powered-by: - ASP.NET status: @@ -409,13 +409,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d0040b7-0000-0200-0000-65f7fdcd0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0066f6-0000-0200-0000-65f807280000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ + 500116c7-cbb1-4994-93ed-9770421644e5\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ + ,\r\n \"InstrumentationKey\": \"c8eef126-4b15-4a92-8b3b-026dee7df69f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=c8eef126-4b15-4a92-8b3b-026dee7df69f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:36.7553438+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\"\ @@ -431,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:43 GMT + - Mon, 18 Mar 2024 09:19:39 GMT expires: - '-1' pragma: @@ -445,7 +445,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 7A63570232A0412B97049182AA429911 Ref B: MAA201060516045 Ref C: 2024-03-18T08:39:42Z' + - 'Ref A: 4A0227043A104956B4DEC0EE1BCE31A0 Ref B: MAA201060513027 Ref C: 2024-03-18T09:19:38Z' x-powered-by: - ASP.NET status: @@ -480,13 +480,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d0061b7-0000-0200-0000-65f7fdd10000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d008cf6-0000-0200-0000-65f8072d0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ + 500116c7-cbb1-4994-93ed-9770421644e5\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ + ,\r\n \"InstrumentationKey\": \"c8eef126-4b15-4a92-8b3b-026dee7df69f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=c8eef126-4b15-4a92-8b3b-026dee7df69f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:36.7553438+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"IngestionMode\"\ @@ -503,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:50 GMT + - Mon, 18 Mar 2024 09:19:45 GMT expires: - '-1' pragma: @@ -519,7 +519,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 4099B4CA87DB47ADA571CA99C5AE3BC4 Ref B: MAA201060516045 Ref C: 2024-03-18T08:39:44Z' + - 'Ref A: 62755333DEB5435F8851A0D8EDB13060 Ref B: MAA201060513027 Ref C: 2024-03-18T09:19:39Z' x-powered-by: - ASP.NET status: @@ -547,13 +547,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d0061b7-0000-0200-0000-65f7fdd10000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d008cf6-0000-0200-0000-65f8072d0000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ + 500116c7-cbb1-4994-93ed-9770421644e5\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ + ,\r\n \"InstrumentationKey\": \"c8eef126-4b15-4a92-8b3b-026dee7df69f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=c8eef126-4b15-4a92-8b3b-026dee7df69f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:36.7553438+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"IngestionMode\"\ @@ -570,7 +570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:52 GMT + - Mon, 18 Mar 2024 09:19:47 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E31729CE5D6D496785D97BE9D9FE894B Ref B: MAA201060513025 Ref C: 2024-03-18T08:39:51Z' + - 'Ref A: 1EB7A43331914A5FA106B9F6BF3749B1 Ref B: MAA201060515027 Ref C: 2024-03-18T09:19:46Z' x-powered-by: - ASP.NET status: @@ -744,7 +744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:53 GMT + - Mon, 18 Mar 2024 09:19:48 GMT expires: - '-1' pragma: @@ -756,7 +756,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 0A9603E31F8D44D8BAB8406ABA748CD9 Ref B: MAA201060513045 Ref C: 2024-03-18T08:39:54Z' + - 'Ref A: 63BF672B2DB042F8B2741C69D5938C2F Ref B: MAA201060514029 Ref C: 2024-03-18T09:19:48Z' status: code: 200 message: OK @@ -779,7 +779,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002?api-version=2023-09-01 response: body: - string: '{"properties":{"customerId":"deff049e-1ffb-41b3-b4ad-2efcf033fccc","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T08:39:26.371347Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-18T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T08:39:26.371347Z","modifiedDate":"2024-03-18T08:39:29.1762618Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"99006a16-0000-0700-0000-65f7fdc10000\""}' + string: '{"properties":{"customerId":"58cc9d34-83b0-471c-b782-8e675965ef03","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2024-03-18T09:19:28.2859768Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2024-03-19T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2024-03-18T09:19:28.2859768Z","modifiedDate":"2024-03-18T09:19:31.4175094Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/clitest000002","name":"clitest000002","type":"Microsoft.OperationalInsights/workspaces","etag":"\"9a00dd15-0000-0700-0000-65f807230000\""}' headers: access-control-allow-origin: - '*' @@ -788,11 +788,11 @@ interactions: cache-control: - no-cache content-length: - - '882' + - '884' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:39:54 GMT + - Mon, 18 Mar 2024 09:19:49 GMT expires: - '-1' pragma: @@ -806,14 +806,14 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E951060A86D349E29D3B5EBF1CCE31C4 Ref B: MAA201060513045 Ref C: 2024-03-18T08:39:54Z' + - 'Ref A: 4DF7CE047FEA4F75A0322AAEB9B813BC Ref B: MAA201060514029 Ref C: 2024-03-18T09:19:48Z' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d0061b7-0000-0200-0000-65f7fdd10000\"", + body: '{"location": "westus", "tags": {}, "kind": "web", "etag": "\"7d008cf6-0000-0200-0000-65f8072d0000\"", "properties": {"Application_Type": "web", "Flow_Type": "Bluefield", "Request_Source": "rest", "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002", "publicNetworkAccessForIngestion": "Disabled", "publicNetworkAccessForQuery": @@ -842,18 +842,18 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/demoApp\"\ ,\r\n \"name\": \"demoApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d00acb7-0000-0200-0000-65f7fddd0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d00def6-0000-0200-0000-65f807370000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"demoApp\",\r\n \"AppId\": \"\ - 4b42df62-a327-4551-8cad-c8ec09c0a4d2\",\r\n \"Application_Type\": \"web\"\ + 500116c7-cbb1-4994-93ed-9770421644e5\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"82ebdbba-c02e-4b85-b543-a786d68b6068\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=82ebdbba-c02e-4b85-b543-a786d68b6068;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T08:39:41.2826206+00:00\"\ + ,\r\n \"InstrumentationKey\": \"c8eef126-4b15-4a92-8b3b-026dee7df69f\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=c8eef126-4b15-4a92-8b3b-026dee7df69f;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"demoApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:36.7553438+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"WorkspaceResourceId\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000002\"\ - ,\r\n \"LaMigrationDate\": \"2024-03-18T08:39:56.8716158+00:00\",\r\n \ + ,\r\n \"LaMigrationDate\": \"2024-03-18T09:19:51.4232739+00:00\",\r\n \ \ \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\"\ : \"Disabled\",\r\n \"publicNetworkAccessForQuery\": \"Disabled\",\r\n\ \ \"Ver\": \"v2\"\r\n }\r\n}" @@ -867,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:40:01 GMT + - Mon, 18 Mar 2024 09:19:56 GMT expires: - '-1' pragma: @@ -883,7 +883,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 971D714CB0104A32ABF88D0A6C918264 Ref B: MAA201060515039 Ref C: 2024-03-18T08:39:55Z' + - 'Ref A: C68BBC30668F47AD97C16BF2D0D34C07 Ref B: MAA201060513031 Ref C: 2024-03-18T09:19:50Z' x-powered-by: - ASP.NET status: @@ -919,13 +919,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d00dbb7-0000-0200-0000-65f7fde60000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0001f7-0000-0200-0000-65f807400000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 900f9758-ccd6-46c9-824b-b806531a6705\",\r\n \"Application_Type\": \"web\"\ + 62a204fa-d80f-4021-9df9-8476796d096a\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:40:05.6991168+00:00\"\ + ,\r\n \"InstrumentationKey\": \"a032150c-9590-469a-ad8d-42ca15ec5a07\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=a032150c-9590-469a-ad8d-42ca15ec5a07;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:59.6324991+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -942,7 +942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:40:06 GMT + - Mon, 18 Mar 2024 09:20:00 GMT expires: - '-1' pragma: @@ -958,7 +958,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 9C05B9776FB14BBDAF1A282703D53450 Ref B: MAA201060515051 Ref C: 2024-03-18T08:40:03Z' + - 'Ref A: 0741450AC7FB4BB2A376A4FB07BE7EC7 Ref B: MAA201060514047 Ref C: 2024-03-18T09:19:57Z' x-powered-by: - ASP.NET status: @@ -986,13 +986,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"web\"\ - ,\r\n \"etag\": \"\\\"7d00dbb7-0000-0200-0000-65f7fde60000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0001f7-0000-0200-0000-65f807400000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 900f9758-ccd6-46c9-824b-b806531a6705\",\r\n \"Application_Type\": \"web\"\ + 62a204fa-d80f-4021-9df9-8476796d096a\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:40:05.6991168+00:00\"\ + ,\r\n \"InstrumentationKey\": \"a032150c-9590-469a-ad8d-42ca15ec5a07\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=a032150c-9590-469a-ad8d-42ca15ec5a07;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:59.6324991+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/clitest.rg000001/providers/microsoft.OperationalInsights/workspaces/clitest000003\"\ @@ -1009,7 +1009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:40:08 GMT + - Mon, 18 Mar 2024 09:20:02 GMT expires: - '-1' pragma: @@ -1023,7 +1023,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 08D339305B5A4C63AFEAC18B60E06BD5 Ref B: MAA201060516011 Ref C: 2024-03-18T08:40:07Z' + - 'Ref A: 6F2C76A275A64C7FBAAC71299B833268 Ref B: MAA201060515031 Ref C: 2024-03-18T09:20:01Z' x-powered-by: - ASP.NET status: @@ -1058,13 +1058,13 @@ interactions: string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/testApp\"\ ,\r\n \"name\": \"testApp\",\r\n \"type\": \"microsoft.insights/components\"\ ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"kind\": \"ios\"\ - ,\r\n \"etag\": \"\\\"7d00fbb7-0000-0200-0000-65f7fdea0000\\\"\",\r\n \"\ + ,\r\n \"etag\": \"\\\"7d0025f7-0000-0200-0000-65f807440000\\\"\",\r\n \"\ properties\": {\r\n \"ApplicationId\": \"testApp\",\r\n \"AppId\": \"\ - 900f9758-ccd6-46c9-824b-b806531a6705\",\r\n \"Application_Type\": \"web\"\ + 62a204fa-d80f-4021-9df9-8476796d096a\",\r\n \"Application_Type\": \"web\"\ ,\r\n \"Flow_Type\": \"Bluefield\",\r\n \"Request_Source\": \"rest\"\ - ,\r\n \"InstrumentationKey\": \"f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5\"\ - ,\r\n \"ConnectionString\": \"InstrumentationKey=f3b1d17b-a60c-4bdd-ab1d-262f7bfe1ea5;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ - ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T08:40:05.6991168+00:00\"\ + ,\r\n \"InstrumentationKey\": \"a032150c-9590-469a-ad8d-42ca15ec5a07\"\ + ,\r\n \"ConnectionString\": \"InstrumentationKey=a032150c-9590-469a-ad8d-42ca15ec5a07;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\"\ + ,\r\n \"Name\": \"testApp\",\r\n \"CreationDate\": \"2024-03-18T09:19:59.6324991+00:00\"\ ,\r\n \"TenantId\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590\",\r\n \"\ provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\ \n \"RetentionInDays\": 90,\r\n \"Retention\": \"P90D\",\r\n \"WorkspaceResourceId\"\ @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Mar 2024 08:40:11 GMT + - Mon, 18 Mar 2024 09:20:05 GMT expires: - '-1' pragma: @@ -1098,7 +1098,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 916126934A48488CAE3DED76D43E35E7 Ref B: MAA201060516011 Ref C: 2024-03-18T08:40:09Z' + - 'Ref A: A1631561498D4831BE2FA41C1A91AC81 Ref B: MAA201060515031 Ref C: 2024-03-18T09:20:02Z' x-powered-by: - ASP.NET status: